oj---九度oj---1434
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了oj---九度oj---1434相关的知识,希望对你有一定的参考价值。
#include<cstdio> #include<algorithm> using namespace std; struct Program{ int s; int e; bool operator < (const Program &A) const{ return e<A.e; } }program[105]; int main(){ int n; while(scanf("%d",&n)!=EOF){ if(n==0) break; for(int i=0;i<n;i++){ scanf("%d %d",&program[i].s,&program[i].e); } sort(program,program+n); int res=0; int cur=0; for(int i=0;i<n;i++){ if(cur<=program[i].s){ cur=program[i].e; res++; } } printf("%d\n",res); } return 0; }
以上是关于oj---九度oj---1434的主要内容,如果未能解决你的问题,请参考以下文章