結果
問題 | No.1054 Union add query |
ユーザー | ashipan |
提出日時 | 2020-05-15 22:33:05 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 890 bytes |
コンパイル時間 | 1,789 ms |
コンパイル使用メモリ | 169,396 KB |
実行使用メモリ | 23,680 KB |
最終ジャッジ日時 | 2024-09-19 11:34:54 |
合計ジャッジ時間 | 5,390 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 5 ms
20,864 KB |
testcase_01 | AC | 6 ms
15,340 KB |
testcase_02 | AC | 6 ms
15,352 KB |
testcase_03 | TLE | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
ソースコード
#include <bits/stdc++.h> #define rep(i, a, n) for(int i = a; i < n; i++) using namespace std; using ll = long long; using P = pair<int, int>; vector<int> to[500005]; vector<int> ans; vector<int> done; void dfs(int v, int p = -1, int b = 0){ done[v] = b; for(auto u : to[v]){ if(u == p) continue; if(done[u] == b) continue; ans[u] += b; dfs(u, v, b); } } int main() { int n, q; scanf("%d %d", &n, &q); ans.resize(n); done.resize(n); rep(i, 0, q){ int t, a, b; scanf("%d %d %d", &t, &a, &b); a--; if(t == 1){ b--; to[a].push_back(b); to[b].push_back(a); } else if(t == 2){ ans[a] += b; done[a] = 1; dfs(a, -1, b); } else{ printf("%d\n", ans[a]); } } return 0; }