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

XDOJ_1091_贪心

时间:2016-10-21 08:06:02      阅读:130      评论:0      收藏:0      [点我收藏+]

标签:

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_贪心

标签:

原文地址:http://www.cnblogs.com/zhurb/p/5983201.html

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