# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
969876 | VMaksimoski008 | 거래 (IZhO13_trading) | C++17 | 402 ms | 34156 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
int main() {
int n, q;
cin >> n >> q;
vector<int> L[n+1], R[n+1];
for(int i=0; i<q; i++) {
int l, r, k;
cin >> l >> r >> k;
L[l].push_back(k - l);
R[r].push_back(k - l);
}
multiset<int> ms;
for(int i=1; i<=n; i++) {
for(int &x : L[i]) ms.insert(x);
if(ms.empty()) cout << 0 << " ";
else cout << i + *ms.rbegin() << " ";
for(int &x : R[i]) ms.erase(ms.find(x));
}
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |