比赛 |
贪心题目练习 |
评测结果 |
AAAAAAAAAAAAA |
题目名称 |
种树 |
最终得分 |
100 |
用户昵称 |
OTTF |
运行时间 |
0.380 s |
代码语言 |
C++ |
内存使用 |
3.41 MiB |
提交时间 |
2025-03-22 10:00:38 |
显示代码纯文本
#include <algorithm>
#include <cstdio>
#include <iostream>
#include <utility>
using namespace std;
int n;
int h;
pair<pair<int, int>, int> house[5114];
// e b t
bool tree[31145];
int res;
int main () {
freopen ("plant_tree.in", "r", stdin);
freopen ("plant_tree.out", "w", stdout);
cin >> n >> h;
for (int i = 1; i <= h; i++) {
cin >> house[i].first.second >> house[i].first.first >> house[i].second;
}
sort (house + 1, house + 1 + h);
for (int i = 1; i <= h; i++) {
int cc = 0;
for (int j = house[i].first.second; j <= house[i].first.first; j++) {
cc += tree[j];
}
if (cc >= house[i].second) {
continue;
}
for (int j = house[i].first.first, k = house[i].second - cc; k; j--) {
if (!tree[j]) {
tree[j] = true;
k--;
res++;
}
}
}
cout << res << endl;
return 0;
}