XDOJ_1091_贪心
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了XDOJ_1091_贪心相关的知识,希望对你有一定的参考价值。
http://acm.xidian.edu.cn/problem.php?id=1091
按结束时间升序,每次找开始时间符合的就好了。
#include<iostream> #include<cstdio> #include<cstring> #include<algorithm> using namespace std; struct vedio { int l,r; }a[1005]; int n; bool cmp(vedio x,vedio y) { return x.r < y.r; } int main() { while(scanf("%d",&n) && n) { for(int i = 1;i <= n;i++) scanf("%d%d",&a[i].l,&a[i].r); sort(a+1,a+1+n,cmp); int ans = 1,time = a[1].r,now = 2; for(;now <= n;now++) { if(time > a[now].l) continue; time = a[now].r; ans++; } printf("%d\n",ans); } return 0; }
以上是关于XDOJ_1091_贪心的主要内容,如果未能解决你的问题,请参考以下文章