Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
142857 | 陈家宝 | 电视节目安排 | C++ | 通过 | 100 | 6 MS | 256 KB | 512 | 2024-04-10 13:44:27 |
#include<bits/stdc++.h> using namespace std; const int MAX=1050; struct TV{ int start,end; }; typedef TV* myTV; TV t[MAX]; int cmp(const TV p,const TV q){ return p.end<q.end; } int main(){ int n,i,cur,ans; while(cin>>n){ if(n==0)break; for(i=0;i<n;i++)cin>>t[i].start>>t[i].end; sort(t,t+n,cmp); cur=t[0].end; ans=1; for(int i=1;i<n;i++) if(t[i].start>=cur){ cur=t[i].end; ans++; } cout<<ans<<endl; } }