# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
991190 | tch1cherin | 거래 (IZhO13_trading) | C++17 | 163 ms | 39384 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
int main() {
cin.tie(nullptr)->sync_with_stdio(false);
int N, M;
cin >> N >> M;
vector<int> L(M), R(M), X(M);
vector<vector<pair<int, int>>> add(N);
for (int i = 0; i < M; i++) {
cin >> L[i] >> R[i] >> X[i];
L[i]--;
add[L[i]].push_back({X[i] - L[i], R[i]});
}
vector<vector<int>> events(N);
multiset<int> S;
for (int i = 0; i < N; i++) {
for (int x : events[i]) {
S.erase(S.find(x));
}
for (auto [x, r] : add[i]) {
S.insert(x);
if (r < N) {
events[r].push_back(x);
}
}
cout << (S.empty() ? 0 : *S.rbegin() + i) << " \n"[i + 1 == N];
}
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |