# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
47578 | dqhungdl | 거래 (IZhO13_trading) | C++17 | 437 ms | 30212 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
int n,T;
vector<int> g1[300005],g2[300005];
multiset<int> s;
int main()
{
ios_base::sync_with_stdio(false);
//freopen("TEST.INP","r",stdin);
//freopen("TEST.OUT","w",stdout);
cin>>n>>T;
int l,r,x;
while(T--)
{
cin>>l>>r>>x;
g1[l].push_back(x-l);
g2[r].push_back(x-l);
}
for(int i=1;i<=n;i++)
{
for(int j=0;j<g1[i].size();j++)
s.insert(g1[i][j]);
if(s.size()==0)
cout<<0<<' ';
else
cout<<*s.rbegin()+i<<' ';
for(int j=0;j<g2[i].size();j++)
s.erase(s.find(g2[i][j]));
}
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |