結果
問題 | No.1637 Easy Tree Query |
ユーザー | madoka |
提出日時 | 2021-08-06 21:54:33 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 961 bytes |
コンパイル時間 | 1,487 ms |
コンパイル使用メモリ | 104,056 KB |
実行使用メモリ | 18,328 KB |
最終ジャッジ日時 | 2024-09-17 01:51:46 |
合計ジャッジ時間 | 8,884 ms |
ジャッジサーバーID (参考情報) |
judge6 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 4 ms
8,904 KB |
testcase_01 | AC | 5 ms
8,832 KB |
testcase_02 | WA | - |
testcase_03 | AC | 5 ms
8,840 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | AC | 77 ms
18,328 KB |
ソースコード
#include <cstdio> #include <cstring> #include <iostream> #include <string> #include <cmath> #include <bitset> #include <vector> #include <map> #include <set> #include <queue> #include <deque> #include <algorithm> #include <complex> #include <unordered_map> #include <unordered_set> #include <random> #include <cassert> #include <fstream> #include <utility> #include <functional> #define popcount __builtin_popcount using namespace std; typedef long long int ll; typedef pair<int, int> P; int n; vector<int> g[200020]; int s[200020]; bool used[200020]; void dfs(int x){ used[x]=1; for(auto y:g[x]){ if(used[y]) continue; dfs(y); s[x]+=s[y]; } } int main() { int q; cin>>n>>q; for(int i=0; i<n-1; i++){ int a, b; cin>>a>>b; a--; b--; g[a].push_back(b); g[b].push_back(a); } ll sum=0; for(int i=0; i<200020; i++){ s[i]++; } dfs(0); for(int i=0; i<q; i++){ int p, x; cin>>p>>x; p--; sum+=s[p]*x; cout<<sum<<"\n"; } return 0; }