# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
971280 | ind1v | 거래 (IZhO13_trading) | C++11 | 202 ms | 22700 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
const int N = 3e5 + 5;
int n, m;
multiset<int> mts;
int a[N];
vector<array<int, 3>> e;
int main() {
ios::sync_with_stdio(false);
cin.tie(0);
cin >> n >> m;
for (int i = 1; i <= m; i++) {
int l, r, x;
cin >> l >> r >> x;
e.push_back(array<int, 3>{l, x - l, 0});
e.push_back(array<int, 3>{r + 1, x - l, 1});
}
memset(a, -0x3f, sizeof(a));
sort(e.begin(), e.end());
for (int i = 1, j = 0; i <= n; i++) {
while (j < (int) e.size() && e[j][0] <= i) {
if (e[j][2] == 0) {
mts.insert(e[j][1]);
} else {
mts.erase(mts.find(e[j][1]));
}
j++;
}
if (mts.empty()) {
cout << 0 << ' ';
} else {
cout << *mts.rbegin() + i << ' ';
}
}
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |