結果
問題 | No.2296 Union Path Query (Hard) |
ユーザー | t98slider |
提出日時 | 2023-03-06 06:52:54 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 358 ms / 7,000 ms |
コード長 | 4,113 bytes |
コンパイル時間 | 2,182 ms |
コンパイル使用メモリ | 193,360 KB |
実行使用メモリ | 37,072 KB |
最終ジャッジ日時 | 2024-05-02 13:57:53 |
合計ジャッジ時間 | 17,072 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 19 ms
28,240 KB |
testcase_02 | AC | 18 ms
28,240 KB |
testcase_03 | AC | 20 ms
28,236 KB |
testcase_04 | AC | 215 ms
31,192 KB |
testcase_05 | AC | 181 ms
31,188 KB |
testcase_06 | AC | 243 ms
32,852 KB |
testcase_07 | AC | 280 ms
34,000 KB |
testcase_08 | AC | 263 ms
34,260 KB |
testcase_09 | AC | 186 ms
21,024 KB |
testcase_10 | AC | 196 ms
21,148 KB |
testcase_11 | AC | 198 ms
21,024 KB |
testcase_12 | AC | 183 ms
18,964 KB |
testcase_13 | AC | 87 ms
5,376 KB |
testcase_14 | AC | 83 ms
5,376 KB |
testcase_15 | AC | 274 ms
33,564 KB |
testcase_16 | AC | 228 ms
26,612 KB |
testcase_17 | AC | 129 ms
11,008 KB |
testcase_18 | AC | 358 ms
35,156 KB |
testcase_19 | AC | 227 ms
19,220 KB |
testcase_20 | AC | 346 ms
35,028 KB |
testcase_21 | AC | 338 ms
33,624 KB |
testcase_22 | AC | 330 ms
33,368 KB |
testcase_23 | AC | 199 ms
36,172 KB |
testcase_24 | AC | 161 ms
19,288 KB |
testcase_25 | AC | 142 ms
34,648 KB |
testcase_26 | AC | 146 ms
34,664 KB |
testcase_27 | AC | 246 ms
34,520 KB |
testcase_28 | AC | 256 ms
34,768 KB |
testcase_29 | AC | 269 ms
35,668 KB |
testcase_30 | AC | 262 ms
35,668 KB |
testcase_31 | AC | 297 ms
32,980 KB |
testcase_32 | AC | 310 ms
32,724 KB |
testcase_33 | AC | 279 ms
31,960 KB |
testcase_34 | AC | 209 ms
31,444 KB |
testcase_35 | AC | 189 ms
31,064 KB |
testcase_36 | AC | 214 ms
30,036 KB |
testcase_37 | AC | 287 ms
23,728 KB |
testcase_38 | AC | 285 ms
23,212 KB |
testcase_39 | AC | 299 ms
23,788 KB |
testcase_40 | AC | 279 ms
23,984 KB |
testcase_41 | AC | 2 ms
5,376 KB |
testcase_42 | AC | 2 ms
5,376 KB |
testcase_43 | AC | 1 ms
5,376 KB |
testcase_44 | AC | 292 ms
36,176 KB |
testcase_45 | AC | 296 ms
36,304 KB |
testcase_46 | AC | 292 ms
37,072 KB |
testcase_47 | AC | 288 ms
36,824 KB |
testcase_48 | AC | 307 ms
36,564 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; struct problem_H { int MAX_LOGV, N; vector<vector<pair<int, int>>> G; vector<vector<int>> parent; vector<ll> dp; vector<int> depth; vector<int> parent_or_size; vector<ll> diameter; vector<array<int, 2>> diameter_vertex; queue<int> que; problem_H(int n) : N(n) { MAX_LOGV = __lg(N) + 1; G.resize(N); parent.resize(MAX_LOGV, vector<int>(N, -1)); parent_or_size.resize(N, -1); dp.resize(N), depth.resize(N); diameter.resize(N); diameter_vertex.resize(N); for(int i = 0; i < N; i++) diameter_vertex[i] = {i, i}; } int leader(int v){ return parent_or_size[v] < 0 ? v : parent_or_size[v]; } void merge(int u, int v, int w){ int x = leader(u), y = leader(v); if(-parent_or_size[x] < -parent_or_size[y]) { swap(x, y); swap(u, v); } parent_or_size[x] += parent_or_size[y]; G[u].emplace_back(v, w); G[v].emplace_back(u, w); parent[0][v] = u; int depth_mx = max(depth[v], depth[u] + 1); depth[v] = depth[u] + 1; dp[v] = dp[u] + w; for(int i = 0; depth_mx >> i + 1; i++){ if(parent[i][v] == -1) parent[i + 1][v] = -1; else parent[i + 1][v] = parent[i][parent[i][v]]; } que.emplace(v); while(!que.empty()){ v = que.front(); que.pop(); parent_or_size[v] = x; for(auto &edge : G[v]){ tie(u, w) = edge; if(parent[0][v] == u) continue; que.emplace(u); parent[0][u] = v; depth_mx = max(depth[u], depth[v] + 1); depth[u] = depth[v] + 1; dp[u] = dp[v] + w; for(int i = 0; depth_mx >> i + 1; i++){ if(parent[i][u] == -1) parent[i + 1][u] = -1; else parent[i + 1][u] = parent[i][parent[i][u]]; } } } update_diameter(x, y); } void update_diameter(int x, int y){ ll mx; int u, v; if(diameter[x] >= diameter[y]) { mx = diameter[x]; u = diameter_vertex[x][0], v = diameter_vertex[x][1]; } else { mx = diameter[y]; u = diameter_vertex[y][0], v = diameter_vertex[y][1]; } for(int i = 0; i < 2; i++){ int v1 = diameter_vertex[x][i]; for(int j = 0; j < 2; j++){ int v2 = diameter_vertex[y][j]; ll d = dist(v1, v2); if(d > mx){ mx = d; u = v1, v = v2; } } } diameter[x] = mx; diameter_vertex[x] = {u, v}; } long long dist(int u, int v){ if(leader(u) != leader(v)) return -1; if(depth[v] < depth[u]) swap(v, u); long long res = dp[u] + dp[v]; int d = depth[v] - depth[u]; for(int i = MAX_LOGV - 1; i >= 0; i--){ if(d >> i & 1) v = parent[i][v]; } if(u == v) return res - 2 * dp[v]; for(int i = MAX_LOGV - 1; i >= 0; i--){ if(parent[i][v] != parent[i][u]){ v = parent[i][v]; u = parent[i][u]; } } v = parent[0][v]; return res - 2 * dp[v]; } }; int main(){ ios::sync_with_stdio(false); cin.tie(0); int N, Q; ll X; cin >> N >> X >> Q; problem_H uf(N); int type, u, v, w; while(Q--){ cin >> type; if(type == 1){ cin >> v >> w; uf.merge(v, X, w); }else if(type == 2){ cin >> u >> v; ll d = uf.dist(u, v); cout << d << '\n'; if(d != -1) (X += d) %= N; }else if(type == 3){ cin >> v; cout << uf.diameter[uf.leader(v)] << '\n'; }else{ cin >> v; X += v; if(X >= N) X -= N; } } }