結果

問題 No.1637 Easy Tree Query
ユーザー erbowlerbowl
提出日時 2022-09-01 22:43:15
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 273 ms / 2,000 ms
コード長 796 bytes
コンパイル時間 2,069 ms
コンパイル使用メモリ 207,756 KB
実行使用メモリ 18,816 KB
最終ジャッジ日時 2024-11-14 14:32:59
合計ジャッジ時間 10,892 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 254 ms
10,368 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 62 ms
6,820 KB
testcase_05 AC 209 ms
5,888 KB
testcase_06 AC 137 ms
5,248 KB
testcase_07 AC 73 ms
5,248 KB
testcase_08 AC 48 ms
6,144 KB
testcase_09 AC 165 ms
8,320 KB
testcase_10 AC 96 ms
5,248 KB
testcase_11 AC 234 ms
8,960 KB
testcase_12 AC 225 ms
7,680 KB
testcase_13 AC 34 ms
5,248 KB
testcase_14 AC 102 ms
8,576 KB
testcase_15 AC 210 ms
9,344 KB
testcase_16 AC 162 ms
9,984 KB
testcase_17 AC 64 ms
5,248 KB
testcase_18 AC 198 ms
5,888 KB
testcase_19 AC 194 ms
6,272 KB
testcase_20 AC 242 ms
7,552 KB
testcase_21 AC 118 ms
6,912 KB
testcase_22 AC 241 ms
9,984 KB
testcase_23 AC 59 ms
6,816 KB
testcase_24 AC 94 ms
6,816 KB
testcase_25 AC 217 ms
6,816 KB
testcase_26 AC 243 ms
7,808 KB
testcase_27 AC 273 ms
9,728 KB
testcase_28 AC 150 ms
6,816 KB
testcase_29 AC 189 ms
7,296 KB
testcase_30 AC 60 ms
7,296 KB
testcase_31 AC 168 ms
6,816 KB
testcase_32 AC 91 ms
6,816 KB
testcase_33 AC 198 ms
6,820 KB
testcase_34 AC 75 ms
18,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

typedef long long ll;
typedef long double ld;
#include <bits/stdc++.h>
using namespace std;
#define int long long

signed main(){
    ll n,q;
    std::cin >> n>>q;
    vector<vector<ll>> edges(n);
    for (int i = 0; i < n-1; i++) {
        ll a,b;
        std::cin >> a>>b;
        a--;b--;
        edges[a].push_back(b);
        edges[b].push_back(a);
    }
    vector<ll> size(n);
    function<ll(ll,ll)> dfs = [&](ll now, ll par){
        ll sum = 1;
        for (auto e : edges[now]) {
            if(e==par)continue;
            sum += dfs(e, now);
        }
        return size[now] = sum;
    };
    dfs(0,-1);
    ll ans = 0;
    for (int i = 0; i < q; i++) {
        ll p,x;
        std::cin >> p>>x;
        p--;
        ans += x*size[p];
        std::cout << ans << std::endl;
    }
}
0