Submission #623877

#TimeUsernameProblemLanguageResultExecution timeMemory
623877sofapudenDungeons Game (IOI21_dungeons)C++17
63 / 100
7160 ms1626864 KiB
#include "dungeons.h" #include <bits/stdc++.h> using namespace std; typedef long long ll; const int mxN = 4e5+5; ll b[mxN][9][19], t[mxN][9][19], a[mxN][9][19]; vector<int> s, p, w, l; int n; const ll inf = (1ll<<60); 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; for(int i = 0; i < 19; ++i){ b[n][0][i] = n; t[n][0][i] = inf; a[n][0][i] = 0; for(int k = 0; k < n; ++k){ if(s[k] <= (1<<i<<6)){ t[k][0][i] = inf; a[k][0][i] = s[k]; b[k][0][i] = w[k]; } else{ t[k][0][i] = s[k]; a[k][0][i] = p[k]; b[k][0][i] = l[k]; } } for(int j = 1; j < 18; ++j){ for(int k = 0; k < n; ++k){ t[k][j%9][i] = (t[b[k][(j-1)%9][i]][(j-1)%9][i] == inf ? t[k][(j-1)%9][i] : min(t[b[k][(j-1)%9][i]][(j-1)%9][i] - a[k][(j-1)%9][i], t[k][(j-1)%9][i])); a[k][j%9][i] = a[b[k][(j-1)%9][i]][(j-1)%9][i] + a[k][(j-1)%9][i]; b[k][j%9][i] = b[b[k][(j-1)%9][i]][(j-1)%9][i]; } } } } ll simulate(int x, int _z) { ll z = _z; while(z <= 64 && x != n) { if(z >= s[x]){ z += s[x]; x = w[x]; } else { z += p[x]; x = l[x]; } } if(x != n){ for(int i = 0; i < 17; ++i){ for(int j = 8; ~j; --j){ while(x != n && z < t[x][j][i]){ z += a[x][j][i]; x = b[x][j][i]; } } while(x != n && z <= (1<<i<<7)){ if(z >= s[x]){ z += s[x]; x = w[x]; } else { z += p[x]; x = l[x]; } } if(x == n)break; } while(x != n) { if(z >= s[x]){ z += s[x]; x = w[x]; } else { z += p[x]; x = l[x]; } } } return z; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...