結果

問題 No.1637 Easy Tree Query
ユーザー eve__fuyukieve__fuyuki
提出日時 2024-05-21 14:20:44
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 57 ms / 2,000 ms
コード長 755 bytes
コンパイル時間 2,083 ms
コンパイル使用メモリ 206,260 KB
実行使用メモリ 16,768 KB
最終ジャッジ日時 2024-05-21 14:20:51
合計ジャッジ時間 7,207 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 55 ms
8,960 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 22 ms
6,940 KB
testcase_05 AC 38 ms
6,940 KB
testcase_06 AC 25 ms
6,944 KB
testcase_07 AC 12 ms
6,940 KB
testcase_08 AC 17 ms
6,940 KB
testcase_09 AC 40 ms
7,680 KB
testcase_10 AC 20 ms
6,940 KB
testcase_11 AC 50 ms
8,192 KB
testcase_12 AC 46 ms
7,040 KB
testcase_13 AC 12 ms
6,944 KB
testcase_14 AC 34 ms
7,680 KB
testcase_15 AC 48 ms
8,576 KB
testcase_16 AC 43 ms
8,832 KB
testcase_17 AC 15 ms
6,944 KB
testcase_18 AC 35 ms
6,940 KB
testcase_19 AC 37 ms
6,944 KB
testcase_20 AC 47 ms
6,940 KB
testcase_21 AC 27 ms
6,940 KB
testcase_22 AC 54 ms
9,088 KB
testcase_23 AC 15 ms
6,940 KB
testcase_24 AC 24 ms
6,944 KB
testcase_25 AC 36 ms
6,940 KB
testcase_26 AC 48 ms
7,296 KB
testcase_27 AC 57 ms
8,832 KB
testcase_28 AC 29 ms
6,944 KB
testcase_29 AC 38 ms
6,940 KB
testcase_30 AC 22 ms
6,940 KB
testcase_31 AC 24 ms
6,944 KB
testcase_32 AC 22 ms
6,940 KB
testcase_33 AC 33 ms
6,940 KB
testcase_34 AC 34 ms
16,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
void fast_io() {
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);
}
int n;
vector<vector<int>> g;
vector<int> sz;
void dfs(int u, int pre) {
    sz[u] = 1;
    for (int v : g[u]) {
        if (v == pre) continue;
        dfs(v, u);
        sz[u] += sz[v];
    }
}
int main() {
    fast_io();
    int q;
    cin >> n >> q;
    g.resize(n);
    sz.resize(n);
    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, -1);
    long long ans = 0;
    for (; q--;) {
        int p;
        long long x;
        cin >> p >> x;
        ans += x * sz[p - 1];
        cout << ans << "\n";
    }
}
0