이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const ll N = 4e5 + 10;
ll n;
vector<ll> s, p, w, l;
vector<ll> win;
ll g[N], start_time[N], tme = 0;
bool subtask2, vis[N];
set<vector<ll>> st;
void dfs(ll v){
vis[v] = 1;
start_time[v] = tme;
st.insert({s[v], tme, v});
tme++;
if (!vis[w[v]])
dfs(w[v]);
auto ub = st.upper_bound({2 * s[v], -1, -1});
if (ub == st.end())
g[v] = -1;
else
g[v] = (*ub)[2];
st.erase({s[v], start_time[v], v});
}
void init(int inp_n, vector<int> S, vector<int> P, vector<int> W, vector<int> L){
n = inp_n;
for (ll x : S)
s.push_back(x);
for (ll x : P)
p.push_back(x);
for (ll x : W)
w.push_back(x);
for (ll x : L)
l.push_back(x);
memset(g, -1, sizeof g);
win.resize(n + 1, 0);
for (ll i = n - 1; i >= 0; i--){
if (w[i] == n)
win[i] = s[i];
else
win[i] = s[i] + win[w[i]];
}
for (ll i = 0; i < n; i ++){
if (!vis[i]) dfs(i);
}
subtask2 = 1;
for (ll i=0; i<n; i++)
subtask2 &= (s[i] == p[i]);
}
ll simulate(int x, int z){
if (subtask2){
ll cur_node = x;
ll cur_strength = z;
while (cur_node != n){
if (s[cur_node] > cur_strength){
cur_strength += p[cur_node];
cur_node = l[cur_node];
}
else{
ll u = g[cur_node];
if (u == -1){
cur_strength += win[cur_node];
break;
}
cur_strength += win[cur_node] - win[u];
cur_node = u;
}
}
return cur_strength;
}
ll cur_strength = z;
while (x != n){
int opp = s[x];
if (opp > cur_strength){
cur_strength += p[x];
x = l[x];
}
else{
cur_strength += s[x];
x = w[x];
}
}
return cur_strength;
}
// int main(){
// int n, q;
// cin >> n >> q;
// vector<int> s(n), p(n), w(n), l(n);
// for (int i = 0; i < n; i ++) cin >> s[i];
// for (int i = 0; i < n; i ++) cin >> p[i];
// for (int i = 0; i < n; i ++) cin >> w[i];
// for (int i = 0; i < n; i ++) cin >> l[i];
// init(n, s, p, w, l);
// while (q--){
// int x, z;
// cin >> x >> z;
// cout << simulate(x, z) << endl;
// }
// }
# | 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... |