結果
問題 | No.2295 Union Path Query (Medium) |
ユーザー | SSRS |
提出日時 | 2023-05-05 22:39:59 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,693 bytes |
コンパイル時間 | 1,834 ms |
コンパイル使用メモリ | 170,376 KB |
実行使用メモリ | 17,152 KB |
最終ジャッジ日時 | 2024-11-23 10:05:07 |
合計ジャッジ時間 | 212,413 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
11,648 KB |
testcase_01 | AC | 3 ms
10,496 KB |
testcase_02 | AC | 3 ms
11,648 KB |
testcase_03 | AC | 684 ms
10,624 KB |
testcase_04 | AC | 614 ms
10,624 KB |
testcase_05 | AC | 522 ms
11,648 KB |
testcase_06 | AC | 451 ms
10,624 KB |
testcase_07 | AC | 703 ms
10,624 KB |
testcase_08 | TLE | - |
testcase_09 | TLE | - |
testcase_10 | TLE | - |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
testcase_14 | AC | 1,277 ms
11,904 KB |
testcase_15 | AC | 224 ms
11,776 KB |
testcase_16 | AC | 231 ms
11,904 KB |
testcase_17 | AC | 395 ms
12,800 KB |
testcase_18 | AC | 523 ms
11,776 KB |
testcase_19 | AC | 536 ms
11,904 KB |
testcase_20 | AC | 3,229 ms
11,776 KB |
testcase_21 | AC | 463 ms
12,928 KB |
testcase_22 | AC | 531 ms
11,776 KB |
testcase_23 | TLE | - |
testcase_24 | TLE | - |
testcase_25 | TLE | - |
testcase_26 | TLE | - |
testcase_27 | TLE | - |
testcase_28 | TLE | - |
testcase_29 | TLE | - |
testcase_30 | TLE | - |
testcase_31 | TLE | - |
testcase_32 | TLE | - |
testcase_33 | TLE | - |
testcase_34 | TLE | - |
testcase_35 | TLE | - |
testcase_36 | TLE | - |
testcase_37 | TLE | - |
testcase_38 | TLE | - |
testcase_39 | TLE | - |
testcase_40 | TLE | - |
testcase_41 | TLE | - |
testcase_42 | TLE | - |
testcase_43 | TLE | - |
testcase_44 | TLE | - |
testcase_45 | TLE | - |
testcase_46 | TLE | - |
testcase_47 | TLE | - |
testcase_48 | TLE | - |
testcase_49 | TLE | - |
testcase_50 | TLE | - |
testcase_51 | TLE | - |
testcase_52 | TLE | - |
testcase_53 | TLE | - |
testcase_54 | TLE | - |
testcase_55 | TLE | - |
ソースコード
#include <bits/stdc++.h> using namespace std; const int INF = 1000000000; const long long MOD = 998244353; struct unionfind{ vector<int> p, t; unionfind(int N): p(N, -1), t(N, -1){ } int root(int x, int q = INF){ if (p[x] < 0 || t[x] > q){ return x; } else { return root(p[x], q); } } bool same(int x, int y, int q = INF){ return root(x, q) == root(y, q); } int size(int v){ return -p[root(v)]; } void unite(int x, int y, int w){ x = root(x); y = root(y); if (p[x] < p[y]){ swap(p[x], p[y]); } p[y] += p[x]; p[x] = y; t[x] = w; } }; int main(){ int N, X, Q; cin >> N >> X >> Q; unionfind UF(N); vector<long long> ans(N, 0); for (int i = 0; i < Q; i++){ int t; cin >> t; if (t == 1){ int v, w; cin >> v >> w; int u = X; u = UF.root(u); v = UF.root(v); if (u != v){ long long res = ans[u] + ans[v] + (long long) UF.size(u) * UF.size(v) % MOD * w; res %= MOD; UF.unite(u, v, w); ans[UF.root(u)] = res; } } if (t == 2){ int u, v; cin >> u >> v; if (!UF.same(u, v)){ cout << -1 << endl; } else { int tv = INF, fv = -1; while (tv - fv > 1){ int mid = (tv + fv) / 2; if (UF.same(u, v, mid)){ tv = mid; } else { fv = mid; } } cout << tv << endl; X += tv; X %= N; } } if (t == 3){ int v; cin >> v; cout << ans[UF.root(v)] << endl; } if (t == 4){ int value; cin >> value; X += value; X %= N; } } }