# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
964691 | pcc | 거래 (IZhO13_trading) | C++17 | 197 ms | 29676 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define pll pair<ll,ll>
#define pii pair<int,int>
#define fs first
#define sc second
#define tlll tuple<ll,ll,ll>
const int mxn = 3e5+10;
ll N,M;
vector<pii> op[mxn];
multiset<int> st;
int ans[mxn];
int main(){
ios::sync_with_stdio(0);cin.tie(0);cout.tie(0);
cin>>N>>M;
for(int i = 0;i<M;i++){
int a,b,c;
cin>>a>>b>>c;
op[a].push_back(pii(c-a,1));
op[b+1].push_back(pii(c-a,-1));
}
for(int i = 1;i<=N;i++){
for(auto &j:op[i]){
if(j.sc>0)st.insert(j.fs);
else st.erase(st.find(j.fs));
}
if(st.empty())ans[i] = 0;
else ans[i] = *st.rbegin()+i;
}
for(int i = 1;i<=N;i++)cout<<ans[i]<<' ';cout<<'\n';
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |