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

贪心/hdu 1051 Wooden Sticks

时间:2014-12-11 23:43:26      阅读:246      评论:0      收藏:0      [点我收藏+]

标签:style   blog   io   color   sp   for   div   log   bs   

#include<cstdio>
#include<algorithm>
#include<cstring>
using namespace std;
struct node
{
    int l,w;
    bool v;
};
int n;
node a[5010];

bool cmp(node x,node y)
{
    if (x.l==y.l) return x.w<y.w;
    return x.l<y.l;
}
int main()
{
    int T;
    scanf("%d",&T);
    for (int t=1;t<=T;t++)
    {
        memset(a,0,sizeof(a));
        scanf("%d",&n);
        for (int i=1;i<=n;i++) scanf("%d%d",&a[i].l,&a[i].w);
        sort(a+1,a+n+1,cmp);
        int ans=0;
        for (int i=1;i<=n;i++)
            if (a[i].v==0)
            {
                ans++;
                a[i].v=1;
                int last=a[i].w;
                for (int j=i+1;j<=n;j++)
                    if (a[j].w>=last && a[j].v==0)
                    {
                        a[j].v=1;
                        last=a[j].w;
                    }

            }
        printf("%d\n",ans);
    }
    return 0;
}

 

贪心/hdu 1051 Wooden Sticks

标签:style   blog   io   color   sp   for   div   log   bs   

原文地址:http://www.cnblogs.com/NicoleLam/p/4158648.html

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