# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
170432 | div2der | 거래 (IZhO13_trading) | C++14 | 865 ms | 25328 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
#include <set>
#include <vector>
#include <algorithm>
using namespace std;
#define sz(s) (int)(s.size())
#define eb emplace_back
#define mkp make_pair
#define all(x) x.begin(), x.end()
const int N = 3e5 + 500;
const int NN = 4e3;
int a[N];
vector <int> v[N];
set <pair <int, int>> st;
int x[N], l[N], r[N];
void solve() {
int n, m;
cin >> n >> m;
for (int i = 1; i <= m; ++ i) {
cin >> l[i] >> r[i] >> x[i];
v[l[i]].eb(i);
int pos = -i;
v[r[i] + 1].eb(pos);
}
/*for (int i = 1; i <= n; ++ i) {
cerr << i << ": ";
for (auto to : v[i])
cerr << to << " ";
cerr << '\n';
}*/
for (int i = 1; i <= n; ++ i) {
int res = 0;
for (auto to : v[i]) {
int dif = x[to] - l[to];
int pos = -to;
int dif2 = x[pos] - l[pos];
if (to <= 0)
st.erase(mkp(dif2, pos));
if (to >= 1)
st.insert(mkp(dif, to));
}
if (!st.empty()) {
res = (--st.end()) -> first + i;
}
cout << res << " ";
}
}
int main () {
solve();
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |