# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
968551 | njoop | 거래 (IZhO13_trading) | C++14 | 146 ms | 17692 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
struct trader {
int l, r, val;
};
struct cmp1 {
bool operator()(const trader &a, const trader &b) {
return a.r < b.r;
}
};
struct cmp2 {
bool operator()(const trader &a, const trader &b) {
return a.val < b.val;
}
};
int n, m, il, ir, ival, ans[300010];
priority_queue<trader, vector<trader>, cmp1> store;
priority_queue<trader, vector<trader>, cmp2> pq;
int main() {
cin.tie(0)->sync_with_stdio(0);
cin >> n >> m;
for(int i=0; i<m; i++) {
cin >> il >> ir >> ival;
store.push({il, ir, ival+n-il});
}
for(int i=n; i>0; i--) {
while(store.size() && i <= store.top().r) {
pq.push(store.top());
store.pop();
}
while(pq.size() && pq.top().l > i) pq.pop();
if(pq.empty()) continue;
ans[i] = pq.top().val - (n-i);
}
for(int i=1; i<=n; i++) {
cout << ans[i] << " ";
}
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |