結果
問題 | No.2342 Triple Tree Query (Hard) |
ユーザー | SSRS |
提出日時 | 2023-05-30 16:37:50 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,953 bytes |
コンパイル時間 | 1,872 ms |
コンパイル使用メモリ | 179,520 KB |
実行使用メモリ | 20,188 KB |
最終ジャッジ日時 | 2024-06-08 20:26:15 |
合計ジャッジ時間 | 15,117 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 38 ms
5,376 KB |
testcase_03 | AC | 47 ms
5,376 KB |
testcase_04 | AC | 32 ms
5,376 KB |
testcase_05 | AC | 34 ms
5,376 KB |
testcase_06 | AC | 43 ms
5,376 KB |
testcase_07 | TLE | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; const long long MOD = 998244353; int main(){ int N, Q; cin >> N >> Q; vector<vector<int>> E(N); for (int i = 0; i < N - 1; i++){ int A, B; cin >> A >> B; A--; B--; E[A].push_back(B); E[B].push_back(A); } vector<long long> X(N); for (int i = 0; i < N; i++){ cin >> X[i]; } vector<int> p(N, -1); vector<vector<int>> c(N); vector<int> d(N, 0); queue<int> q; q.push(0); while (!q.empty()){ int v = q.front(); q.pop(); for (int w : E[v]){ if (w != p[v]){ p[w] = v; c[v].push_back(w); d[w] = d[v] + 1; q.push(w); } } } for (int i = 0; i < Q; i++){ int T; cin >> T; if (T == 1){ int V; cin >> V; V--; cout << X[V] << endl; } if (T == 2){ int V, K; long long C, D; cin >> V >> K >> C >> D; V--; vector<int> d2(N, -1); d2[V] = 0; queue<int> q; q.push(V); while (!q.empty()){ int v = q.front(); q.pop(); for (int w : E[v]){ if (d2[w] == -1){ d2[w] = d2[v] + 1; q.push(w); } } } for (int j = 0; j < N; j++){ if (d2[j] <= K){ X[j] = (X[j] * C + D) % MOD; } } } if (T == 3){ int V; long long C, D; cin >> V >> C >> D; V--; auto dfs = [&](auto dfs, int v) -> void { X[v] = (X[v] * C + D) % MOD; for (int w : c[v]){ dfs(dfs, w); } }; dfs(dfs, V); } if (T == 4){ int U, V; long long C, D; cin >> U >> V >> C >> D; U--; V--; while (true){ if (U == V){ X[U] = (X[U] * C + D) % MOD; break; } if (d[U] > d[V]){ swap(U, V); } X[V] = (X[V] * C + D) % MOD; V = p[V]; } } } }