Submission #1053184

# Submission time Handle Problem Language Result Execution time Memory
1053184 2024-08-11T09:29:43 Z Zicrus Dungeons Game (IOI21_dungeons) C++17
0 / 100
1 ms 1372 KB
#include <bits/stdc++.h>
#include "dungeons.h"
using namespace std;

typedef long long ll;

int n;
vector<int> p, w, l;
int s;
vector<vector<pair<ll, ll>>> jmp;
vector<ll> dp;

void init(int n1, vector<int> s1, vector<int> p1, vector<int> w1, vector<int> l1) {
    n = n1; s = s1[0]; p = p1; w = w1; l = l1;
    jmp = vector<vector<pair<ll, ll>>>(n, vector<pair<ll, ll>>(20));
    for (int i = 0; i < n; i++) {
        jmp[i][0] = {p[i], l[i]};
        if (jmp[i][0].second == n) jmp[i][0].first = 1ll << 30ll;
    }
    for (int j = 1; j < 20; j++) {
        for (int i = 0; i < n; i++) {
            if (jmp[jmp[i][j-1].second][j-1].second == n) {
                jmp[i][j] = {jmp[jmp[i][j-1].second][j-1].first,
                             jmp[jmp[i][j-1].second][j-1].second};
                continue;
            }
            jmp[i][j] = {jmp[jmp[i][j-1].second][j-1].first + jmp[i][j-1].first,
                         jmp[jmp[i][j-1].second][j-1].second};
        }
    }
    dp = vector<ll>(n+1);
    dp[n] = 0;
    for (int i = n-1; i >= 0; i--) {
        dp[i] = s + dp[w[i]];
    }
}

ll simulate(int x1, int z1) {
	ll i = x1, z = z1;
    for (int j = 20-1; j >= 0; j--) {
        if (z + jmp[i][j].first < s) {
            z += jmp[i][j].first;
            i += jmp[i][j].second;
        }
    }
    if (z < s) {
        z += jmp[i][0].first;
        i += jmp[i][0].second;
    }
    z += dp[i];
    return z;
}
# Verdict Execution time Memory Grader output
1 Correct 1 ms 344 KB Output is correct
2 Runtime error 0 ms 344 KB Execution killed with signal 11
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 1 ms 1368 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 1 ms 1372 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 1 ms 1372 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 1 ms 1372 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 1 ms 1368 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -