# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
882268 | alexdd | 거래 (IZhO13_trading) | C++17 | 405 ms | 38460 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<iostream>
#include<vector>
#include<set>
using namespace std;
int n,m;
vector<pair<int,int>> inc[300005];
vector<pair<int,int>> sf[300005];
signed main()
{
cin>>n>>m;
int l,r,a;
for(int i=1;i<=m;i++)
{
cin>>l>>r>>a;
inc[l].push_back({a,r});
sf[r].push_back({a,l});
}
set<pair<int,pair<int,int>>> s;
for(int i=1;i<=n;i++)
{
for(auto x:inc[i])
{
s.insert({x.first - i, x});
}
if(s.empty())
{
cout<<0<<" ";
}
else
{
auto it = s.rbegin();
pair<int,pair<int,int>> cop = *it;
cout<<cop.first + i<<" ";
}
for(auto x:sf[i])
{
s.erase({x.first - x.second, {x.first,i}});
}
}
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |