This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#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];
}
unsigned long long 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]];
}
Compilation message (stderr)
dungeons.cpp: In function 'll simulate(int, int)':
dungeons.cpp:70:26: warning: comparison of integer expressions of different signedness: 'long long unsigned int' and 'long long int' [-Wsign-compare]
70 | if (sum[x][i]+strength < W[0].first) {
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |