#include "dungeons.h"
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define pb push_back
const int BAND_LIM = 23, DECOMP_LIM = 11;
int n, to[BAND_LIM][DECOMP_LIM][400001];
ll wei[BAND_LIM][DECOMP_LIM][400001], lim[BAND_LIM][DECOMP_LIM][400001];
vector<int> s, p, w, l;
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);
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];
}
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;
}
}
}
assert(0);
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
10 ms |
89944 KB |
Output is correct |
2 |
Correct |
10 ms |
89948 KB |
Output is correct |
3 |
Runtime error |
47 ms |
132172 KB |
Execution killed with signal 6 |
4 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
42 ms |
126292 KB |
Execution killed with signal 6 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
44 ms |
126336 KB |
Execution killed with signal 6 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
44 ms |
126336 KB |
Execution killed with signal 6 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
44 ms |
126336 KB |
Execution killed with signal 6 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
42 ms |
126292 KB |
Execution killed with signal 6 |
2 |
Halted |
0 ms |
0 KB |
- |