今年暑假不ac的java版,虽然不懂的贪心但贪心是一种很自然的思想,写着写着就用到了贪心

Posted 奋斗中的小蜗牛

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了今年暑假不ac的java版,虽然不懂的贪心但贪心是一种很自然的思想,写着写着就用到了贪心相关的知识,希望对你有一定的参考价值。

import java.util.*;

class node implements Comparable<node>
{
     int begin;
     int end;
    @Override
    public int compareTo(node arg0) {
        if(this.begin==arg0.begin)return this.end-arg0.end;
        else return this.begin-arg0.begin;
    }
     
}

class solution
{
 private int T=0;
 private ArrayList<node> res=new ArrayList<node>();
 private Scanner iner=new Scanner(System.in);
 private int src=0;
 private int last=0;
 
 
 public void add()
 {
     while(iner.hasNext())
     {
         T=iner.nextInt();
         src=0;
         last=0;
         res.clear();
         if(T==0)
         {
             break;
         }
         for(int i=0;i<T;++i)
         {   
             node temp=new node();
             temp.begin=iner.nextInt();
             temp.end=iner.nextInt();
             res.add(temp);
         }
         Collections.sort(res);
         for(int i=0;i<T;++i)
         {
             node temp=res.get(i);     
             if(i==0)
             {
                 src++;
                 last=temp.end;
             }
             else if(i>0)
             {
                 if(temp.begin<last&&temp.end<=last)
                 {
                     last=temp.end;
                 }
                 if(temp.begin>=last)
                 {
                     src++;
                     last=temp.end;
                 }
             }     
         }
         System.out.println(src);
     }
 }
  
}

public class Main {
    public static void main(String[] args) {
        solution space = new solution();
        space.add(); 
    }
}

 

以上是关于今年暑假不ac的java版,虽然不懂的贪心但贪心是一种很自然的思想,写着写着就用到了贪心的主要内容,如果未能解决你的问题,请参考以下文章

hdu2037今年暑假不AC(贪心,活动安排问题)

HDU 2037 今年暑假不AC(贪心)

HDU 2037 今年暑假不AC (区间贪心)

HDU2037今年暑假不AC(贪心)

HDU 2037 今年暑假不AC (贪心)

贪心HDU2037:今年暑假不AC