首页 > 代码库 > XDOJ_1091_贪心
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_贪心
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。