Problem Description
“今年暑假不AC?”
“是的。”
“那你干什么呢?”
“看世界杯呀,笨蛋!”
“@#$%^&*%…”
确实如此,世界杯来了,球迷的节日也来了,估计很多ACMer也会抛开电脑,奔向电视了。
作为球迷,一定想看尽量多的完整的比赛,当然,作为新时代的好青年,你一定还会看一些其它的节目,比如新闻联播(永远不要忘记关心国家大事)、非常6+7、超级女生,以及王小丫的《开心辞典》等等,假设你已经知道了所有你喜欢看的电视节目的转播时间表,你会合理安排吗?(目标是能看尽量多的完整节目)
输入数据包含多个测试实例,每个测试实例的第一行只有一个整数n(n<=100),表示你喜欢看的节目的总数,然后是n行数据,每行包括两个数据Ti_s,Ti_e (1<=i<=n),分别表示第i个节目的开始和结束时间,为了简化问题,每个时间都用一个正整数表示。n=0表示输入结束,不做处理。
Output
对于每个测试实例,输出能完整看到的电视节目的个数,每个测试实例的输出占一行。
1 2 3 4 5 6 7 8 9 10 11 12 13 14
| 12 1 3 3 4 0 7 3 8 15 19 15 20 10 15 8 18 6 12 5 10 4 14 2 9 0
|
Sample Output
Suggest Answer
事件序列问题,就是贪心,根据事件的结束时间来排序就好了.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
| import java.util.*;
public class _2037 { public static void main(String[] args) { Scanner input = new Scanner(System.in); timeCompare c = new timeCompare(); int n = input.nextInt(); while (n != 0) { Integer[][] arr = new Integer[n][2]; for (int i = 0; i < n; i++) { arr[i][0] = input.nextInt(); arr[i][1] = input.nextInt(); } Arrays.sort(arr, c); int et = arr[0][1]; int num = 1; for (int i = 1; i < n; i++) { if (arr[i][0] < et) { continue; } else { et = arr[i][1]; num++; } } System.out.println(num); n = input.nextInt(); } input.close(); } }
class timeCompare implements Comparator<Integer[]> { @Override public int compare(Integer[] o1, Integer[] o2) { if (o1[1] < o2[1]) { return -1; } else if (o1[1] > o2[1]) { return 1; } else { return 0; } } }
|