#include "dungeons.h"
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define pb push_back
const int MAX_N = 50000, BAND_LIM = 23, DECOMP_LIM = 23;
int n, to[BAND_LIM][DECOMP_LIM][MAX_N + 1];
ll wei[BAND_LIM][DECOMP_LIM][MAX_N + 1], lim[BAND_LIM][DECOMP_LIM][MAX_N + 1];
vector<int> s, p, w, l, winner;
void init(int n, vector<int> s, vector<int> p, vector<int> w, vector<int> l) {
::n = n;
::s = s;
::p = p;
::w = w;
::l = l;
s.pb(0);
p.pb(0);
w.pb(n);
l.pb(n);
winner.resize(n + 1);
for (int i = n - 1; i >= 0; i--) {
winner[i] = winner[w[i]] + s[i];
}
for (int b = 0; b < BAND_LIM; b++) {
int lb = (1 << b), rb = (1 << (b + 1)) - 1;
for (int i = 0; i <= n; i++) {
if (s[i] < lb) { // instant-win
to[b][0][i] = w[i];
wei[b][0][i] = s[i];
lim[b][0][i] = (ll)1e16;
} else if (s[i] > rb) { // instant-lose
to[b][0][i] = l[i];
wei[b][0][i] = p[i];
lim[b][0][i] = (ll)1e16;
} else {
to[b][0][i] = l[i];
wei[b][0][i] = p[i];
lim[b][0][i] = s[i];
}
}
for (int k = 1; k < DECOMP_LIM; k++) {
for (int i = 0; i <= n; i++) {
to[b][k][i] = to[b][k - 1][to[b][k - 1][i]];
wei[b][k][i] = wei[b][k - 1][i] + wei[b][k - 1][to[b][k - 1][i]];
lim[b][k][i] = min(lim[b][k - 1][i], lim[b][k - 1][to[b][k - 1][i]] - wei[b][k - 1][i]);
}
}
}
}
ll simulate(int x, int z) {
for (int b = 0; b < BAND_LIM; b++) {
int rb = (1 << (b + 1)) - 1;
if (z > rb) { // past this band
continue;
}
for (int k = DECOMP_LIM - 1; k >= 0; k--) {
if (lim[b][k][x] <= z || z + wei[b][k][x] > rb) {
continue;
}
z += wei[b][k][x];
x = to[b][k][x];
}
if (x == n) {
return z;
}
for (int iter = 0; iter < 2; iter++) {
if (z >= s[x]) {
z += s[x];
x = w[x];
} else {
z += p[x];
x = l[x];
}
if (x == n) {
return z;
}
}
}
// win all the way
return z + winner[x];
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
10 ms |
96600 KB |
Output is correct |
2 |
Correct |
11 ms |
98652 KB |
Output is correct |
3 |
Correct |
18 ms |
115744 KB |
Output is correct |
4 |
Correct |
226 ms |
521516 KB |
Output is correct |
5 |
Correct |
18 ms |
117840 KB |
Output is correct |
6 |
Correct |
220 ms |
521472 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
15 ms |
109404 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
16 ms |
109404 KB |
Output is correct |
2 |
Correct |
265 ms |
522896 KB |
Output is correct |
3 |
Incorrect |
233 ms |
523056 KB |
Output isn't correct |
4 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
16 ms |
109404 KB |
Output is correct |
2 |
Correct |
265 ms |
522896 KB |
Output is correct |
3 |
Incorrect |
233 ms |
523056 KB |
Output isn't correct |
4 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
16 ms |
109404 KB |
Output is correct |
2 |
Correct |
265 ms |
522896 KB |
Output is correct |
3 |
Incorrect |
233 ms |
523056 KB |
Output isn't correct |
4 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
15 ms |
109404 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |