結果

問題 No.1637 Easy Tree Query
ユーザー Today03Today03
提出日時 2024-03-16 17:36:58
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 252 ms / 2,000 ms
コード長 749 bytes
コンパイル時間 2,013 ms
コンパイル使用メモリ 202,280 KB
実行使用メモリ 17,880 KB
最終ジャッジ日時 2024-09-30 04:08:55
合計ジャッジ時間 10,244 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,820 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 222 ms
10,096 KB
testcase_03 AC 4 ms
6,816 KB
testcase_04 AC 49 ms
8,516 KB
testcase_05 AC 184 ms
7,712 KB
testcase_06 AC 121 ms
7,500 KB
testcase_07 AC 65 ms
6,820 KB
testcase_08 AC 41 ms
8,012 KB
testcase_09 AC 138 ms
9,344 KB
testcase_10 AC 83 ms
7,620 KB
testcase_11 AC 196 ms
9,384 KB
testcase_12 AC 197 ms
8,928 KB
testcase_13 AC 32 ms
7,296 KB
testcase_14 AC 83 ms
9,468 KB
testcase_15 AC 176 ms
9,728 KB
testcase_16 AC 127 ms
9,856 KB
testcase_17 AC 53 ms
7,296 KB
testcase_18 AC 188 ms
7,936 KB
testcase_19 AC 182 ms
7,964 KB
testcase_20 AC 230 ms
8,832 KB
testcase_21 AC 120 ms
8,448 KB
testcase_22 AC 227 ms
10,112 KB
testcase_23 AC 62 ms
7,608 KB
testcase_24 AC 93 ms
8,456 KB
testcase_25 AC 210 ms
7,780 KB
testcase_26 AC 227 ms
9,156 KB
testcase_27 AC 252 ms
9,900 KB
testcase_28 AC 154 ms
7,724 KB
testcase_29 AC 179 ms
8,668 KB
testcase_30 AC 53 ms
8,704 KB
testcase_31 AC 167 ms
6,820 KB
testcase_32 AC 94 ms
7,892 KB
testcase_33 AC 202 ms
7,296 KB
testcase_34 AC 73 ms
17,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#ifdef LOCAL
#include "./debug.cpp"
#else
#define debug(...)
#define print_line
#endif
using namespace std;
using ll = long long;

int N, Q;
vector<int> G[1 << 17];
int C[1 << 17];

void dfs(int now, int pre) {
    for (int nxt : G[now]) {
        if (nxt != pre) {
            dfs(nxt, now);
            C[now] += C[nxt];
        }
    }
    C[now]++;
}

int main() {
    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);
    }
    dfs(0, 0);

    ll now = 0;
    while (Q--) {
        int p, x;
        cin >> p >> x;
        p--;
        now += 1ll * C[p] * x;
        cout << now << '\n';
    }
}
0