# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
41324 | wzy | 거래 (IZhO13_trading) | C++11 | 391 ms | 31716 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define pii pair<int,int>
#define F first
#define pb push_back
#define S second
int n , m , carry[300005];
vector<pii> st [300005], ed[300005];
multiset<pii> ans;
int main(){
scanf("%d%d" , &n , &m);
for(int i = 0 ; i < m ; i++){
int l ,r , v;
scanf("%d%d%d" , &l , &r , &v);
st[l].pb(pii(r, v));
}
for(int i = 0 ; i <= n ; i++) carry[i] = 0;
for(int i = 1 ; i <= n ; i++){
while(!st[i].empty()){
ans.insert(pii(i -st[i].back().S , st[i].back().F));
ed[st[i].back().F].pb(pii(pii( i - st[i].back().S , st[i].back().F)));
st[i].pop_back();
}
if(!ans.empty()){
pii u = *ans.begin();
carry[i] = max(carry[i] , i - u.F);
}
while(ed[i].size()){
ans.erase(ans.find(ed[i].back()));
ed[i].pop_back();
}
}
for(int i = 1 ; i <= n; i++) printf("%d " , carry[i]);
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |