結果

問題 No.1637 Easy Tree Query
ユーザー rogi52rogi52
提出日時 2022-10-01 06:05:59
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 64 ms / 2,000 ms
コード長 743 bytes
コンパイル時間 1,962 ms
コンパイル使用メモリ 206,920 KB
実行使用メモリ 18,304 KB
最終ジャッジ日時 2024-06-02 12:21:16
合計ジャッジ時間 6,731 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 57 ms
9,088 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 24 ms
6,272 KB
testcase_05 AC 40 ms
5,376 KB
testcase_06 AC 29 ms
5,376 KB
testcase_07 AC 13 ms
5,376 KB
testcase_08 AC 19 ms
5,632 KB
testcase_09 AC 43 ms
7,680 KB
testcase_10 AC 21 ms
5,376 KB
testcase_11 AC 57 ms
8,064 KB
testcase_12 AC 48 ms
7,040 KB
testcase_13 AC 13 ms
5,376 KB
testcase_14 AC 35 ms
7,680 KB
testcase_15 AC 56 ms
8,448 KB
testcase_16 AC 51 ms
8,832 KB
testcase_17 AC 16 ms
5,376 KB
testcase_18 AC 39 ms
5,376 KB
testcase_19 AC 41 ms
5,888 KB
testcase_20 AC 51 ms
6,912 KB
testcase_21 AC 32 ms
6,272 KB
testcase_22 AC 60 ms
9,044 KB
testcase_23 AC 17 ms
5,376 KB
testcase_24 AC 29 ms
6,400 KB
testcase_25 AC 41 ms
5,376 KB
testcase_26 AC 53 ms
7,296 KB
testcase_27 AC 64 ms
8,832 KB
testcase_28 AC 31 ms
5,376 KB
testcase_29 AC 44 ms
6,784 KB
testcase_30 AC 24 ms
6,784 KB
testcase_31 AC 24 ms
5,376 KB
testcase_32 AC 24 ms
5,376 KB
testcase_33 AC 35 ms
5,376 KB
testcase_34 AC 38 ms
18,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i = 0; i < (n); i++)
using namespace std;
typedef long long ll;

int main(){
    cin.tie(0);
    ios::sync_with_stdio(0);
    
    int N,Q; cin >> N >> Q;
    vector<vector<int>> G(N);
    rep(i,N-1) {
        int u,v; cin >> u >> v; u--; v--;
        G[u].push_back(v);
        G[v].push_back(u);
    }
    
    vector<int> sz(N, 1);
    function<void(int,int)> dfs = [&](int v, int p) -> void {
        for(int to : G[v]) {
            if(to != p) {
                dfs(to, v);
                sz[v] += sz[to];
            }
        }
    }; dfs(0, -1);

    ll ans = 0;
    rep(_,Q) {
        int p,x; cin >> p >> x; p--;
        ans += 1LL * x * sz[p];
        cout << ans << "\n";
    }
}
0