暴力美学HDU3650

来源:互联网 发布:yeezy抢鞋软件 编辑:程序博客网 时间:2024/09/21 09:22

原题http://acm.hdu.edu.cn/showproblem.php?pid=3650

Hot Expo

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 1272    Accepted Submission(s): 617

#include <stdio.h>#include <stdlib.h>#include <math.h>#include <malloc.h>#include <limits.h>#include <ctype.h>#include <string.h>#include <string>#include <algorithm>#include <iostream>#include <stack>#include <queue>#include <set>#include <map>#include <vector>#include <deque>#include <map>using namespace std;#define N 111struct node{int x;int y;int mark;}a[N];bool cmp(node a,node b){if(a.x == b.x){return a.y < b.y;}return a.x < b.x;}int main(){int n,i,j;while(~scanf("%d",&n)){if(n == 0){break;}for(i=0;i<n;i++){a[i].mark = 1;}for(i=0;i<n;i++){scanf("%d%d",&a[i].x,&a[i].y);}sort(a,a+n,cmp);//int flag = 1;int sum=0;for(i=0;i<n;i++){if(a[i].mark == 1){int flag=i;for(j=0;j<n;j++){if(a[j].x>a[flag].y && j>flag && a[j].mark==1){a[j].mark = 0;flag = j;//a[i].mark = 0;}}a[i].mark = 0;sum++;}}printf("%d\n",sum);}return 0;}



 

Problem Description
Sunny wants to go to the Shanghai Expo this month and he intends to visit n (1 <= n <= 100 ) country pavilions. As we all know, in each pavilion, there is always a wonderful performance every day. Every performance will always be played only one time each day. And performance i begins at beg[i] second and ends at end[i] second (0<=beg[i], end[i] <24 * 3600). Sunny can not visit more than one country pavilion at the same time. Sunny wouldn't like to miss any performance in the country pavilions that he plans to visit. However, it's also well known that getting accommodation in Shanghai is a little expensive, so he has to make a good arrangement to make his staying time (in days) there minimum.


 

Input
The input contains several test cases. Each test case begins with an integer number n. Then n lines follow and each contains two integers representing the begin time and end time of the performance in the corresponding day.
Input is terminated by a value of zero (0) for n.


 

Output
Output the minimum days that Sunny should spend in visiting in a seperated line for each test case.


 

Sample Input
21 44 522 34 60


 

Sample Output
2 1

 

0 0
原创粉丝点击