HDU 2037 今年暑假不AC(贪心)

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2037

题        意:给你n个节目的开始时间与结束时间,问能看完几个节目。

思        路:直接贪心比较时间就行了,

                    排序时,有两种方式

                           1,按开始时间排序 

    0   1   2    3    3   4    5    6    8    10    15   15

    7   3   9    4    8   14   10   12   18   15    19   20

                           2,按结束时间排序

     1    3    0    3    2    5    6    4   10    8   15   15

     3    4    7    8    9   10   12   14   15   18   19   20

代码如下:

        方式1的代码:

#include <iostream>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <algorithm>
#include <map>
using namespace std;
struct node
{
    int r,l;
} vis[120];
bool cmp( node a, node b )
{
    if(a.l != b.l ) return a.l < b.l;
    return a.r < b.r;
}
int main()
{
    int n;
    while( scanf ( "%d", &n ) != EOF )
    {
        if( n == 0 ) break;
        for( int i = 0; i < n; i ++ )
            scanf ( "%d %d", &vis[i].l, &vis[i].r );
        sort(vis, vis+n,cmp);
        vis[n].r=vis[n].l=200;
        int ans = 0;
        for( int i = 0; i < n; i ++ )
        {
            if( vis[i].r <= vis[i+1].r )
            {
                int j = i+1;
                while(vis[i].r > vis[j].l )
                    j++;
                if(vis[i].r < vis[j].l)
                    i=j,ans++;
                else
                if(vis[i].r == vis[j].l)
                    i=j-1,ans++;
            }
        }
        printf("%d\n",ans);
    }
    return 0;
}
        方式2的代码:

#include <iostream>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <algorithm>
#include <map>
using namespace std;
struct node
{
    int r,l;
} vis[120];
bool cmp( node a, node b )
{
    return a.r < b.r;
}
int main()
{
    int n;
    while( scanf ( "%d", &n ) != EOF )
    {
        if(n==0) break;
        for( int i = 0; i < n; i ++ )
            scanf ( "%d %d", &vis[i].l, &vis[i].r );
        sort(vis, vis+n,cmp);
        vis[n].r=vis[n].l=200;
        int ans = 1,temp = vis[0].r;
        for( int i = 1; i < n; i ++ )
        {
            if(vis[i].l >= temp ) ans++,temp=vis[i].r;
        }
        printf("%d\n",ans);
    }
    return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值