记录编号 41642 评测结果 AAAAAAAAAA
题目名称 环保绿化 最终得分 100
用户昵称 Gravatar王者自由 是否通过 通过
代码语言 C++ 运行时间 0.074 s
提交时间 2012-08-06 17:45:15 内存使用 1.05 MiB
显示代码纯文本
#include <cstdio>
#include <algorithm>
using namespace std;
const int N = 50000;
struct need {
    int b, e, t;
    bool operator <(const need &x) const {
        return x.e > e;
    }
} a[N];
int n, h, s, l[N];
int main() {
    freopen("trees.in", "r", stdin);
    freopen("trees.out", "w", stdout);
    scanf("%d", &n);
    scanf("%d", &h);
    for(int i=1; i<=h; i++)
        scanf("%d %d %d", &a[i].b, &a[i].e, &a[i].t);
    sort(a+1, a+h+1);
    for(int i=1; i<=h; i++) {
        for(int j=a[i].b; j<=a[i].e; j++)
            if(l[j])
                a[i].t--;
        int k = a[i].e;
        for(int j=1; j<=a[i].t; j++) {
            while(l[k]) k--;
            s += (l[k] = 1);
        }
    }
    printf("%d\n", s);
    return 0;
}