結果

問題 No.1637 Easy Tree Query
ユーザー kokatsukokatsu
提出日時 2021-10-20 00:30:04
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 197 ms / 2,000 ms
コード長 714 bytes
コンパイル時間 2,570 ms
コンパイル使用メモリ 207,956 KB
実行使用メモリ 14,240 KB
最終ジャッジ日時 2024-06-22 12:50:35
合計ジャッジ時間 8,907 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 173 ms
8,740 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 75 ms
6,944 KB
testcase_05 AC 130 ms
6,944 KB
testcase_06 AC 81 ms
6,940 KB
testcase_07 AC 36 ms
6,940 KB
testcase_08 AC 50 ms
6,940 KB
testcase_09 AC 137 ms
6,944 KB
testcase_10 AC 59 ms
6,940 KB
testcase_11 AC 170 ms
7,712 KB
testcase_12 AC 150 ms
6,940 KB
testcase_13 AC 31 ms
6,948 KB
testcase_14 AC 101 ms
7,084 KB
testcase_15 AC 159 ms
7,648 KB
testcase_16 AC 146 ms
9,584 KB
testcase_17 AC 46 ms
6,944 KB
testcase_18 AC 120 ms
6,940 KB
testcase_19 AC 123 ms
6,940 KB
testcase_20 AC 154 ms
9,008 KB
testcase_21 AC 90 ms
6,940 KB
testcase_22 AC 197 ms
7,764 KB
testcase_23 AC 48 ms
6,944 KB
testcase_24 AC 81 ms
6,944 KB
testcase_25 AC 123 ms
6,944 KB
testcase_26 AC 165 ms
7,060 KB
testcase_27 AC 196 ms
7,800 KB
testcase_28 AC 101 ms
6,944 KB
testcase_29 AC 128 ms
6,940 KB
testcase_30 AC 67 ms
6,940 KB
testcase_31 AC 79 ms
6,944 KB
testcase_32 AC 67 ms
6,944 KB
testcase_33 AC 109 ms
6,944 KB
testcase_34 AC 87 ms
14,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std;

void main() {
    int N, Q;
    readf("%d %d\n", N, Q);

    auto tree = new int[][](N+1);
    foreach (i; 0 .. N-1) {
        int a, b;
        readf("%d %d\n", a, b);

        tree[a] ~= b;
        tree[b] ~= a;
    }

    auto seen = new bool[](N+1);
    auto part = new long[](N+1);
    void dfs(int root) {
        seen[root] = true;
        ++part[root];
        
        foreach (t; tree[root]) {
            if (seen[t]) {
                continue;
            }

            dfs(t);

            part[root] += part[t];
        }
    }

    dfs(1);

    long S;
    foreach (i; 0 .. Q) {
        long p, x;
        readf("%d %d\n", p, x);

        S += part[p] * x;

        S.writeln;
    }
}
0