记录编号 41684 评测结果 AAAAAAAAAA
题目名称 环保绿化 最终得分 100
用户昵称 GravatarTBK 是否通过 通过
代码语言 C++ 运行时间 0.079 s
提交时间 2012-08-09 08:57:49 内存使用 57.56 MiB
显示代码纯文本
#include <cstdio>
#include <iostream>
#include <cstdlib>
#include <string>
#include <cstring>
#include <cmath>
#include <vector>
#include <set>
#include <algorithm>
using namespace std;
int a,b,c,d,maxx,s,t;
bool bo[30001];
struct fun
{
    int l,m,n;
}f[5000000];    
int Compare(const void*elem1,const void*elem2)
{
    struct fun *elem3=(struct fun *)elem1;
    struct fun *elem4=(struct fun *)elem2;
    if (elem3->m != elem4-> m) return elem3->m - elem4->m;
        else return elem4->l - elem3->l;
}
int main(void)
{
    freopen("trees.in","r",stdin);
    freopen("trees.out","w",stdout);
    scanf("%d%d",&a,&b);
    for (c=0;c<b;c++) scanf("%d%d%d",&f[c].l,&f[c].m,&f[c].n);
    qsort(f,b,sizeof(fun),Compare);
    for (c=0;c<b;c++)
    {
        t=0;
        for (d=f[c].l;d<=f[c].m;d++) if (bo[d]==true) t++;
        t=f[c].n-t;
        if (t>0)
        {
            for (d=f[c].m;d>f[c].m-f[c].n;d--) 
            if (bo[d]==false) 
            {
                bo[d]=true;
                t--;
                if (t==0) break;
            }
        }
    }
    for (c=1;c<=a;c++) 
        if (bo[c]==true) s++;
    printf("%d",s);
    fclose(stdin);
    fclose(stdout);
    return 0;
}