結果
問題 | No.2341 Triple Tree Query (Medium) |
ユーザー | SSRS |
提出日時 | 2023-05-25 23:28:01 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,649 bytes |
コンパイル時間 | 1,957 ms |
コンパイル使用メモリ | 179,124 KB |
実行使用メモリ | 18,048 KB |
最終ジャッジ日時 | 2024-06-08 20:19:16 |
合計ジャッジ時間 | 18,157 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | RE | - |
testcase_36 | RE | - |
testcase_37 | RE | - |
ソースコード
#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 B, C; cin >> V >> K >> B >> C; V--; X[V] = (X[V] * B + C) % MOD; for (int w : E[V]){ X[w] = (X[w] * B + C) % MOD; } } if (T == 3){ int U, V; long long B, C; cin >> U >> V >> B >> C; U--; V--; while (true){ if (U == V){ X[U] = (X[U] * B + C) % MOD; break; } if (d[U] > d[V]){ swap(U, V); } X[V] = (X[V] * B + C) % MOD; V = p[V]; } } if (T == 4){ int V; long long B, C; cin >> V >> B >> C; V--; auto dfs = [&](auto dfs, int v) -> void { X[v] = (X[v] * B + C) % MOD; for (int w : c[v]){ dfs(dfs, w); } }; dfs(dfs, V); } } }