Submission #615837

#TimeUsernameProblemLanguageResultExecution timeMemory
615837Clan328Dungeons Game (IOI21_dungeons)C++17
0 / 100
2 ms1108 KiB
#include <bits/stdc++.h>

using namespace std;

typedef long long ll;
typedef vector<int> vi;
typedef vector<ll> vl;
typedef vector<vi> vvi;
typedef vector<vl> vvl;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;

int n;
vector<pair<ll, ll>> G, W;
vl dp;

const int LOG = 62;
vvi up;
vvl sum;
vi visited;

ll getDP(int i) {
	if (dp[i] != -1) return dp[i];
	if (i == n) {
		dp[i] = 0;
		return 0;
	}
	dp[i] = W[i].first+getDP(G[i].first);
	return dp[i];
}

void init(int nx, vi s, vi p, vi w, vi l) {
	n = nx;
	G = vector<pll>(n);
	W = vector<pll>(n);

	for (int i = 0; i < n; i++) {
		G[i] = {w[i], l[i]};
		W[i] = {s[i], p[i]};
	}

	dp = vl(n+1, -1);
	for (int i = 0; i <= n; i++) {
		dp[i] = getDP(i);
	}

	up = vvi(n+1, vi(LOG));
	sum = vvl(n+1, vl(LOG));
	
	for (int i = 0; i < n; i++) {
		up[i][0] = G[i].second;
		sum[i][0] = W[i].second;
	}

	for (int i = 1; i < LOG; i++) {
		for (int v = 0; v < n; v++) {
			sum[v][i] = sum[v][i-1] + sum[up[v][i-1]][i-1];
			up[v][i] = up[up[v][i-1]][i-1];
		}
	}
}

ll simulate(int x, int z) {
	if (z >= W[0].first) {
		return z + dp[x];
	}

	ll strength = z;
	for (int i = LOG-1; i >= 0; i--) {
		if (sum[x][i]+strength < W[0].first) {
			strength += sum[x][i];
			x = up[x][i];
		}
	}

	return strength+sum[x][0]+dp[up[x][0]];
}
#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...