Submission #1022941

#TimeUsernameProblemLanguageResultExecution timeMemory
1022941NeroZeinDungeons Game (IOI21_dungeons)C++17
11 / 100
7094 ms26708 KiB
#include "dungeons.h"
#include <bits/stdc++.h>
using namespace std;

int n;
vector<int> s, p, w, l;
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_; 
  return;
}

long long simulate(int x, int z) {
  long long strength = z; 
  while (x != n) {
    if (strength >= s[x]) {
      strength += s[x];
      x = w[x];
    } else {
      strength += p[x];
      x = l[x];
    }
  }
  return strength;
}

#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...