結果

問題 No.1637 Easy Tree Query
ユーザー kuc_jacksonkuc_jackson
提出日時 2021-08-14 15:38:15
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 261 ms / 2,000 ms
コード長 940 bytes
コンパイル時間 2,424 ms
コンパイル使用メモリ 209,308 KB
実行使用メモリ 18,816 KB
最終ジャッジ日時 2024-10-05 10:19:35
合計ジャッジ時間 9,254 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 261 ms
11,008 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 56 ms
6,656 KB
testcase_05 AC 200 ms
7,040 KB
testcase_06 AC 130 ms
6,016 KB
testcase_07 AC 74 ms
5,248 KB
testcase_08 AC 48 ms
6,016 KB
testcase_09 AC 159 ms
8,960 KB
testcase_10 AC 90 ms
5,248 KB
testcase_11 AC 217 ms
9,856 KB
testcase_12 AC 215 ms
8,704 KB
testcase_13 AC 31 ms
5,248 KB
testcase_14 AC 88 ms
8,576 KB
testcase_15 AC 190 ms
9,856 KB
testcase_16 AC 136 ms
9,856 KB
testcase_17 AC 57 ms
5,248 KB
testcase_18 AC 176 ms
7,040 KB
testcase_19 AC 179 ms
7,296 KB
testcase_20 AC 212 ms
8,832 KB
testcase_21 AC 103 ms
7,168 KB
testcase_22 AC 250 ms
10,752 KB
testcase_23 AC 55 ms
5,376 KB
testcase_24 AC 82 ms
7,168 KB
testcase_25 AC 199 ms
6,912 KB
testcase_26 AC 219 ms
8,960 KB
testcase_27 AC 245 ms
10,624 KB
testcase_28 AC 145 ms
6,400 KB
testcase_29 AC 165 ms
8,064 KB
testcase_30 AC 51 ms
7,040 KB
testcase_31 AC 160 ms
5,248 KB
testcase_32 AC 87 ms
6,016 KB
testcase_33 AC 179 ms
6,144 KB
testcase_34 AC 70 ms
18,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll = long long;
using pint = pair<int, int>;
using pll = pair<ll, ll>;

void dfs(int v, int p, vector<vector<int>> &G, vector<ll> &sz){
    if(p != -1 && G[v].size() == 1){
        sz[v] = 1;
        return;
    }
    int sum = 0;
    for(int nv: G[v]){
        if(nv == p)continue;
        dfs(nv, v, G, sz);
        sum += sz[nv];
    }
    sz[v] = ++sum;
}

int main(){
    int N, Q; cin >> N >> Q;
    vector<vector<int>> G(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);
    }
    vector<pll> q(Q);
    for(int i = 0; i < Q; i++){
        ll p, x; cin >> p >> x;
        --p; q[i] = {p, x};
    }
    vector<ll> sz(N);
    dfs(0, -1, G, sz);
    ll tot = 0;
    for(int i = 0; i < Q; i++){
        ll p, x; tie(p, x) = q[i];
        tot += sz[p] * x;
        cout << tot << endl;
    }
}
0