比赛 |
贪心题目练习 |
评测结果 |
AAAAAAAAAAAAA |
题目名称 |
种树 |
最终得分 |
100 |
用户昵称 |
长安惊龙灵松 |
运行时间 |
0.422 s |
代码语言 |
C++ |
内存使用 |
3.67 MiB |
提交时间 |
2025-03-22 10:05:40 |
显示代码纯文本
#include<bits/stdc++.h>
using namespace std;
int n,h,ans,a[300005],x,y,k,yy;
struct node{
int b,e,t;
}s[50005];
int cmp(node a,node b)
{
return a.e<b.e;
}
int main()
{
freopen("plant_tree.in","r",stdin);
freopen("plant_tree.out","w",stdout);
scanf("%d %d",&n,&h);
for(int i=1;i<=h;i++)
scanf("%d %d %d",&s[i].b,&s[i].e,&s[i].t);
sort(s+1,s+h+1,cmp);
for(int i=1;i<=h;i++)
{
x=y=0;
for(int j=s[i].b;j<=s[i].e;j++)
if(a[j]==1)
x++;
y=s[i].t-x;
if(y>0)
{
for(int j=s[i].e;y>0&&j>=s[i].b;j--)
{
if(a[j]==0)
{
a[j]=1;
ans++;
y--;
}
}
}
}
printf("%d",ans);
return 0;
}