tj
2024-11-22 19:39:51
发布于:上海
0阅读
0回复
0点赞
#include<bits/stdc++.h>
using namespace std;
int ans[50005];
int main()
{
int a,b;
cin>>a>>b;
for(int i = 0;i<b;i++)
{
int l,r,n;
cin>>l>>r>>n;
for(int i = l-1;i<r;i++)
ans[i] = n;
}
for(int i = 0;i<a;i++)
cout<<ans[i]<<endl;
}
这里空空如也
有帮助,赞一个