이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
// Be Name Khoda //
#include "dungeons.h"
#include <bits/stdc++.h>
using namespace std;
#define MAX(x, y) ((x) > (y) ? (x) : (y))
#define MIN(x, y) ((x) < (y) ? (x) : (y))
#define debug(x) cerr << "(" << (#x) << "): " << (x) << endl;
#define all(x) (x).begin(), (x).end()
#define fi first
#define se second
#define pb push_back
#define mp make_pair
typedef long long ll;
const int maxn5 = 4e5 + 10;
const int ssq = 3200;
int n, rt, cmp[maxn5];
ll h[maxn5];
int s[maxn5], p[maxn5], w[maxn5], l[maxn5];
vector <int> adj[maxn5];
void dfs(int v){
cmp[v] = rt;
for(auto u : adj[v]){
h[u] = h[v] + s[u];
dfs(u);
}
}
void init(int nn, std::vector<int> ss, std::vector<int> pp, std::vector<int> ww, std::vector<int> ll) {
n = nn;
for(int i = 0; i < n; i++){
s[i] = ss[i];
p[i] = pp[i];
w[i] = ww[i];
l[i] = ll[i];
if(s[i] < ssq)
adj[w[i]].pb(i);
}
for(int i = 0; i < n; i++) if(s[i] >= ssq){
rt = i;
dfs(i);
}
rt = n;
dfs(n);
return;
}
long long simulate(int x, int zz) {
ll ret = zz;
while(x < n && ret < ssq){
if(ret < s[x]){
ret += p[x];
x = l[x];
}
else{
ret += s[x];
x = w[x];
}
}
while(x < n){
ret += h[x];
x = cmp[x];
if(x < n){
if(ret < s[x]){
ret += p[x];
x = l[x];
}
else{
ret += s[x];
x = w[x];
}
}
}
return ret;
}
# | 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... |