码迷,mamicode.com
首页 > 其他好文 > 详细

HDOJ 2037 今年暑假不AC

时间:2017-01-25 16:36:45      阅读:175      评论:0      收藏:0      [点我收藏+]

标签:暑假   com   系统   first   images   while   9.png   algorithm   cstring   

系统的学了一下贪心,事件的调度问题。重新写了一下。

传送门:http://acm.hdu.edu.cn/showproblem.php?pid=2037

技术分享

技术分享

 

 1 #include <iostream>
 2 #include <algorithm>
 3 #include <cstring>
 4 #include <cstdio>
 5 using namespace std;
 6 
 7 const int MAXN=120;
 8 
 9 pair<int,int> show[MAXN];
10 
11 bool cmp(pair<int,int>a,pair<int,int>b){
12     return a.second<b.second;
13 }
14 
15 
16 int solve(int N){
17     sort(show,show+N,cmp);
18     int ans=0;
19     int t=0;
20     for(int i=0;i<N;i++){
21         if(show[i].first>=t){
22             ans++;
23             t=show[i].second;
24         }
25     }
26     return ans;
27 }
28 
29 int main(){
30     int N;
31     while(cin>>N){
32         if(N==0) break;
33         for(int i=0;i<N;i++)
34             cin>>show[i].first>>show[i].second;
35         cout<<solve(N)<<endl;
36     }
37 
38 }

 

HDOJ 2037 今年暑假不AC

标签:暑假   com   系统   first   images   while   9.png   algorithm   cstring   

原文地址:http://www.cnblogs.com/IKnowYou0/p/6349507.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!