# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
755617 | gvancak | 거래 (IZhO13_trading) | C++17 | 330 ms | 30888 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define ll long long
#define s second
#define f first
using namespace std;
ll n,a[300005],sum,x,k,ans,t,ans1,y,z,u,m;
bool ok;
vector <ll> l[300005],r[300005];
multiset <ll> s;
int main(){
ios :: sync_with_stdio(0);
cin.tie(0); cout.tie(0);
cin>>n>>m;
for (int o=1; o<=m; o++){
cin>>y>>z>>x;
l[y].push_back(x-y+1);
r[z].push_back(x-y+1);
}
for (int i=1; i<=n; i++){
for (int j=0; j<l[i].size(); j++){
s.insert(l[i][j]);
}
if (s.size()==0) {
cout<<0<<" ";
continue;
}
set <ll> ::iterator it = s.end();
it--;
cout<<(*it)+i-1<<" ";
for (int j=0; j<r[i].size(); j++){
s.erase(s.find(r[i][j]));
}
}
cout<<endl;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |