結果

問題 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  
実行時間 69 ms / 2,000 ms
コード長 755 bytes
コンパイル時間 2,373 ms
コンパイル使用メモリ 205,424 KB
実行使用メモリ 16,768 KB
最終ジャッジ日時 2024-12-20 18:12:31
合計ジャッジ時間 8,498 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 66 ms
8,960 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 25 ms
6,144 KB
testcase_05 AC 45 ms
5,376 KB
testcase_06 AC 32 ms
5,248 KB
testcase_07 AC 14 ms
6,816 KB
testcase_08 AC 20 ms
6,816 KB
testcase_09 AC 47 ms
7,680 KB
testcase_10 AC 23 ms
6,816 KB
testcase_11 AC 61 ms
8,064 KB
testcase_12 AC 55 ms
7,040 KB
testcase_13 AC 13 ms
6,820 KB
testcase_14 AC 42 ms
7,808 KB
testcase_15 AC 57 ms
8,448 KB
testcase_16 AC 51 ms
8,832 KB
testcase_17 AC 18 ms
6,816 KB
testcase_18 AC 42 ms
6,816 KB
testcase_19 AC 45 ms
6,816 KB
testcase_20 AC 56 ms
6,912 KB
testcase_21 AC 36 ms
6,816 KB
testcase_22 AC 66 ms
8,960 KB
testcase_23 AC 19 ms
6,820 KB
testcase_24 AC 30 ms
6,820 KB
testcase_25 AC 45 ms
6,820 KB
testcase_26 AC 57 ms
7,296 KB
testcase_27 AC 69 ms
8,704 KB
testcase_28 AC 35 ms
6,820 KB
testcase_29 AC 45 ms
6,820 KB
testcase_30 AC 26 ms
6,820 KB
testcase_31 AC 28 ms
6,820 KB
testcase_32 AC 26 ms
6,816 KB
testcase_33 AC 40 ms
6,820 KB
testcase_34 AC 40 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