結果

問題 No.1637 Easy Tree Query
ユーザー ぷらぷら
提出日時 2021-08-06 21:24:22
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 291 ms / 2,000 ms
コード長 713 bytes
コンパイル時間 2,160 ms
コンパイル使用メモリ 202,700 KB
実行使用メモリ 17,152 KB
最終ジャッジ日時 2024-09-17 03:25:37
合計ジャッジ時間 9,895 ms
ジャッジサーバーID
(参考情報)
judge6 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,812 KB
testcase_01 AC 3 ms
6,940 KB
testcase_02 AC 269 ms
9,344 KB
testcase_03 AC 3 ms
6,940 KB
testcase_04 AC 61 ms
7,680 KB
testcase_05 AC 224 ms
7,120 KB
testcase_06 AC 148 ms
6,940 KB
testcase_07 AC 81 ms
6,944 KB
testcase_08 AC 52 ms
7,296 KB
testcase_09 AC 171 ms
8,496 KB
testcase_10 AC 102 ms
6,940 KB
testcase_11 AC 237 ms
8,824 KB
testcase_12 AC 239 ms
8,192 KB
testcase_13 AC 39 ms
6,940 KB
testcase_14 AC 107 ms
8,560 KB
testcase_15 AC 222 ms
8,960 KB
testcase_16 AC 164 ms
9,216 KB
testcase_17 AC 68 ms
6,944 KB
testcase_18 AC 212 ms
7,140 KB
testcase_19 AC 208 ms
7,296 KB
testcase_20 AC 253 ms
7,936 KB
testcase_21 AC 122 ms
7,680 KB
testcase_22 AC 258 ms
9,344 KB
testcase_23 AC 64 ms
6,940 KB
testcase_24 AC 100 ms
7,680 KB
testcase_25 AC 228 ms
7,040 KB
testcase_26 AC 256 ms
8,320 KB
testcase_27 AC 291 ms
9,064 KB
testcase_28 AC 162 ms
6,944 KB
testcase_29 AC 202 ms
7,936 KB
testcase_30 AC 61 ms
7,900 KB
testcase_31 AC 181 ms
6,944 KB
testcase_32 AC 103 ms
7,040 KB
testcase_33 AC 214 ms
6,940 KB
testcase_34 AC 77 ms
17,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int dp[100005];
vector<int>ki[100005];

int dfs(int n,int p) {
    int res = 0;
    for(int i = 0; i < ki[n].size(); i++) {
        if(ki[n][i] == p) {
            continue;
        }
        res += dfs(ki[n][i],n);
    }
    res++;
    return dp[n] = res;
}

int main() {
    int N,Q;
    cin >> N >> Q;
    for(int i = 0; i < N-1; i++) {
        int a,b;
        cin >> a >> b;
        a--;
        b--;
        ki[a].push_back(b);
        ki[b].push_back(a);
    }
    dfs(0,-1);
    long long sum = 0;
    for(int i = 0; i < Q; i++) {
        int p,x;
        cin >> p >> x;
        p--;
        sum += (long long)(x)*dp[p];
        cout << sum << endl;
    }
}
0