# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
41318 | IvanC | 거래 (IZhO13_trading) | C++14 | 239 ms | 65536 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef pair<int,int> ii;
typedef tuple<int,int,int> trinca;
priority_queue<ii> pq;
vector<trinca> sweep;
int N,M,ptr;
int main(){
scanf("%d %d",&N,&M);
for(int i = 1;i<=M;i++){
int l,r,x;
scanf("%d %d %d",&l,&r,&x);
sweep.push_back(make_tuple(l,x - l,r));
}
sort(sweep.begin(),sweep.end());
for(int i = 1;i<=N;i++){
while(ptr < M && get<0>(sweep[ptr]) <= i ){
ii novo = ii(get<1>(sweep[ptr]),get<2>(sweep[ptr]));
pq.push(novo);
ptr++;
}
while(!pq.empty() && pq.top().second < i ){
pq.pop();
}
if(!pq.empty()){
printf("%d ",pq.top().first + i);
}
else{
printf("0 ");
}
}
printf("\n");
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |