結果

問題 No.1637 Easy Tree Query
ユーザー SSRSSSRS
提出日時 2021-08-06 21:22:32
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 297 ms / 2,000 ms
コード長 859 bytes
コンパイル時間 1,755 ms
コンパイル使用メモリ 175,308 KB
実行使用メモリ 15,328 KB
最終ジャッジ日時 2024-09-17 03:19:54
合計ジャッジ時間 9,391 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 273 ms
14,024 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 79 ms
8,704 KB
testcase_05 AC 227 ms
7,168 KB
testcase_06 AC 148 ms
6,940 KB
testcase_07 AC 78 ms
6,940 KB
testcase_08 AC 54 ms
7,552 KB
testcase_09 AC 179 ms
11,300 KB
testcase_10 AC 102 ms
6,940 KB
testcase_11 AC 241 ms
12,116 KB
testcase_12 AC 242 ms
10,112 KB
testcase_13 AC 38 ms
6,940 KB
testcase_14 AC 113 ms
11,572 KB
testcase_15 AC 225 ms
12,580 KB
testcase_16 AC 173 ms
13,632 KB
testcase_17 AC 69 ms
6,940 KB
testcase_18 AC 205 ms
7,168 KB
testcase_19 AC 205 ms
8,064 KB
testcase_20 AC 257 ms
9,856 KB
testcase_21 AC 128 ms
8,832 KB
testcase_22 AC 277 ms
13,788 KB
testcase_23 AC 65 ms
6,944 KB
testcase_24 AC 103 ms
8,960 KB
testcase_25 AC 229 ms
7,040 KB
testcase_26 AC 261 ms
10,520 KB
testcase_27 AC 297 ms
13,316 KB
testcase_28 AC 165 ms
6,940 KB
testcase_29 AC 202 ms
9,472 KB
testcase_30 AC 68 ms
9,600 KB
testcase_31 AC 180 ms
6,940 KB
testcase_32 AC 104 ms
7,168 KB
testcase_33 AC 216 ms
6,940 KB
testcase_34 AC 80 ms
15,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
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<int> pr(N, -1);
  vector<vector<int>> ch(N);
  queue<int> q;
  q.push(0);
  vector<int> bfs;
  while (!q.empty()){
    int v = q.front();
    q.pop();
    bfs.push_back(v);
    for (int w : E[v]){
      if (w != pr[v]){
        pr[w] = v;
        ch[v].push_back(w);
        q.push(w);
      }
    }
  }
  reverse(bfs.begin(), bfs.end());
  vector<int> dp(N, 1);
  for (int v : bfs){
    for (int w : ch[v]){
      dp[v] += dp[w];
    }
  }
  long long ans = 0;
  for (int i = 0; i < Q; i++){
    int p, x;
    cin >> p >> x;
    p--;
    ans += (long long) dp[p] * x;
    cout << ans << endl;
  }
}
0