結果

問題 No.1637 Easy Tree Query
ユーザー bonKotsubonKotsu
提出日時 2021-11-10 01:15:52
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 285 ms / 2,000 ms
コード長 613 bytes
コンパイル時間 1,994 ms
コンパイル使用メモリ 169,168 KB
実行使用メモリ 15,616 KB
最終ジャッジ日時 2024-11-19 10:02:10
合計ジャッジ時間 9,455 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,760 KB
testcase_01 AC 3 ms
5,888 KB
testcase_02 AC 262 ms
8,960 KB
testcase_03 AC 3 ms
5,760 KB
testcase_04 AC 69 ms
7,680 KB
testcase_05 AC 222 ms
7,168 KB
testcase_06 AC 144 ms
6,820 KB
testcase_07 AC 79 ms
6,016 KB
testcase_08 AC 52 ms
7,296 KB
testcase_09 AC 172 ms
8,576 KB
testcase_10 AC 97 ms
6,656 KB
testcase_11 AC 235 ms
8,832 KB
testcase_12 AC 232 ms
8,092 KB
testcase_13 AC 39 ms
6,784 KB
testcase_14 AC 107 ms
8,576 KB
testcase_15 AC 219 ms
8,832 KB
testcase_16 AC 163 ms
9,288 KB
testcase_17 AC 66 ms
6,784 KB
testcase_18 AC 206 ms
7,168 KB
testcase_19 AC 196 ms
7,552 KB
testcase_20 AC 248 ms
7,936 KB
testcase_21 AC 124 ms
7,680 KB
testcase_22 AC 255 ms
9,216 KB
testcase_23 AC 62 ms
6,784 KB
testcase_24 AC 98 ms
7,680 KB
testcase_25 AC 227 ms
7,040 KB
testcase_26 AC 256 ms
8,260 KB
testcase_27 AC 285 ms
9,216 KB
testcase_28 AC 158 ms
7,040 KB
testcase_29 AC 201 ms
7,936 KB
testcase_30 AC 62 ms
7,936 KB
testcase_31 AC 177 ms
5,888 KB
testcase_32 AC 99 ms
7,168 KB
testcase_33 AC 208 ms
6,656 KB
testcase_34 AC 76 ms
15,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

#define ll long long
#define rep(i, n) for (int i = 0; i < (n); i++)
#define P pair<int, int>

vector<int> G[100005];
int c[100000];

void dfs(int v, int p = -1) {
  for (int nv : G[v]) {
    if (nv == p) continue; 
    dfs(nv, v);
    c[v]++;
    c[v]+=c[nv];
  }
}

int main() {
  int n, q;
  cin >> n >> q;
  rep(i,n-1) {
    int a, b;
    cin >> a >> b;
    a--, b--;
    G[a].push_back(b);
    G[b].push_back(a);
  }
  dfs(0);
  ll ans = 0;
  rep(qi,q) {
    int p;
    ll x;
    cin >> p >> x;
    p--;
    ans += x*(c[p]+1);
    cout << ans << endl;
  }




}
0