Submission #439697

#TimeUsernameProblemLanguageResultExecution timeMemory
439697tutisDungeons Game (IOI21_dungeons)C++17
11 / 100
7117 ms196420 KiB
#include "dungeons.h" #include <bits/stdc++.h> using namespace std; long long N; const int mxt = 13; long long f(int x) { long long r = 1; long long w = 1; while (x--) { w *= 4; r *= w; } return r; } int mn1[mxt][400002][19]; int mx1[mxt][400002][19]; int tp[mxt][400002][19]; int del[mxt][400002][19]; void init(int n, vector<int> s, vector<int> p, vector<int> w, vector<int> l) { N = n; for (int x = 0; x < mxt; x++) { long long v = f(x); mn1[x][n][0] = -3e7; mx1[x][n][0] = 3e7; tp[x][n][0] = n; del[x][n][0] = 0; for (int i = 0; i < n; i++) { if (s[i] > v) { mn1[x][i][0] = -1e8; mx1[x][i][0] = s[i] - 1; tp[x][i][0] = l[i]; del[x][i][0] = p[i]; } else { mn1[x][i][0] = s[i]; mx1[x][i][0] = 1e8; tp[x][i][0] = w[i]; del[x][i][0] = s[i]; } } for (int t = 1; t < 19; t++) { for (int i = 0; i <= n; i++) { int i_ = tp[x][i][t - 1]; int del_ = del[x][i][t - 1]; mn1[x][i][t] = max(mn1[x][i][t - 1], mn1[x][i_][t - 1] - del_); mx1[x][i][t] = min(mx1[x][i][t - 1], mx1[x][i_][t - 1] - del_); tp[x][i][t] = tp[x][i_][t - 1]; del[x][i][t] = del[x][i][t - 1] + del[x][i_][t - 1]; if (del[x][i][t] >= 2e8) { mn1[x][i][t] = mn1[x][i][t - 1]; mx1[x][i][t] = mx1[x][i][t - 1]; tp[x][i][t] = tp[x][i][t - 1]; del[x][i][t] = del[x][i][t - 1]; } } } } } long long simulate(int x, int z) { long long s = z; while (x != N) { for (int v = mxt - 1; v >= 0; v--) { if (s >= mn1[v][x][0] && s <= mx1[v][x][0]) for (int t = 18; t >= 0; t--) { if (s >= mn1[v][x][t] && s <= mx1[v][x][t]) { s += del[v][x][t]; x = tp[v][x][t]; } } } } return s; }
#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...