# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
330610 | MetB | Salesman (IOI09_salesman) | C++14 | 855 ms | 23960 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
using namespace __gnu_pbds;
using namespace std;
typedef unsigned long long ull;
typedef long long ll;
typedef long double ld;
const int N = 2000001;
const ll INF = 1e18, MOD = 1e9 + 7, MOD2 = 1e6 + 3;
int n, U, D, s, maxx;
struct SegTree {
int t[N], start;
void build (int n) {
start = 1;
while (start < n) start <<= 1;
fill (t, t + 2 * start, -1e9);
}
void update (int x, int d) {
x += start;
t[x] = d;
x >>= 1;
while (x) {
t[x] = max (t[2 * x], t[2 * x + 1]);
x >>= 1;
}
}
int get (int l, int r) {
l += start, r += start + 1;
int mx = -1e9;
while (l < r) {
if (l & 1) mx = max (mx, t[l++]);
if (r & 1) mx = max (mx, t[--r]);
l >>= 1, r >>= 1;
}
return mx;
}
} t_left, t_right;
struct shop {
int x, t, m;
bool operator< (shop& b) {
return t < b.t;
}
} a[N];
void process (int l, int r) {
vector <shop> v (a + l, a + r);
vector <int> ans (r - l), ans_l (r - l), ans_r (r - l);
sort (v.begin(), v.end(), [&](shop a, shop b) { return a.x < b.x; });
for (int i = 0; i < v.size (); i++) {
ans[i] = t_left.get (0, v[i].x) - D * v[i].x + v[i].m;
ans[i] = max (ans[i], t_right.get (v[i].x, maxx) + U * v[i].x + v[i].m);
}
ans_l[0] = ans[0], ans_r.back() = ans.back();
for (int i = 1; i < v.size (); i++) {
ans_l[i] = max (ans[i], ans_l[i-1] - D * (v[i].x - v[i-1].x) + v[i].m);
}
for (int i = v.size () - 2; i >= 0; i--) {
ans_r[i] = max (ans[i], ans_r[i+1] - U * (v[i+1].x - v[i].x) + v[i].m);
}
for (int i = 0; i < v.size (); i++) {
ans[i] = max (ans_l[i], ans[i]);
ans[i] = max (ans_r[i], ans[i]);
//cout << v[i].x << ' ' << v[i].t << ' ' << ans[i] << endl;
t_left.update (v[i].x, ans[i] + v[i].x * D);
t_right.update (v[i].x, ans[i] - v[i].x * U);
}
}
int main () {
cin >> n >> U >> D >> s;
for (int i = 0; i < n; i++) {
cin >> a[i].t >> a[i].x >> a[i].m;
maxx = max (maxx, a[i].x);
}
t_left.build (maxx + 1);
t_right.build (maxx + 1);
t_right.update (s, -s * U);
t_left.update (s, s * D);
sort (a, a + n);
int last = 0;
for (int i = 0; i < n; i++) {
if (a[i].t != a[last].t) {
process (last, i);
last = i;
}
}
process (last, n);
int ans = t_right.get (s, maxx) + U * s;
ans = max (ans, t_left.get (0, s) - D * s);
cout << ans;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |