제출 #615845

#제출 시각아이디문제언어결과실행 시간메모리
615845Clan328던전 (IOI21_dungeons)C++17
0 / 100
1 ms724 KiB
#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 = 22; 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]; } } } pll dist(int x, int d) { ll strength = 0; for (int i = LOG-1; i >= 0; i--) { if ((d>>i)&1) { strength += sum[x][i]; x = up[x][i]; } } return {x, strength}; } ll simulate(int x, int z) { if (z >= W[0].first) { return z + dp[x]; } int lo = 0, hi = 1e7+6, res, mid; while (lo <= hi) { mid = (lo+hi)/2; if (dist(x, mid).second+z < W[0].first) { res = mid; lo = mid + 1; } else hi = mid -1; } // cout << res << endl; return z + dist(x, res).second + dp[dist(x, res).first]; // return strength+sum[x][0]+dp[up[x][0]]; }

컴파일 시 표준 에러 (stderr) 메시지

dungeons.cpp: In function 'll simulate(int, int)':
dungeons.cpp:92:49: warning: 'res' may be used uninitialized in this function [-Wmaybe-uninitialized]
   92 |  return z + dist(x, res).second + dp[dist(x, res).first];
      |                                                 ^
#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...