結果

問題 No.1637 Easy Tree Query
ユーザー KKT89KKT89
提出日時 2021-08-06 21:23:48
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 75 ms / 2,000 ms
コード長 893 bytes
コンパイル時間 2,561 ms
コンパイル使用メモリ 218,180 KB
実行使用メモリ 13,312 KB
最終ジャッジ日時 2024-09-17 03:24:00
合計ジャッジ時間 6,367 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 61 ms
9,360 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 25 ms
6,940 KB
testcase_05 AC 45 ms
6,940 KB
testcase_06 AC 33 ms
6,940 KB
testcase_07 AC 14 ms
6,944 KB
testcase_08 AC 20 ms
6,944 KB
testcase_09 AC 51 ms
7,808 KB
testcase_10 AC 22 ms
6,944 KB
testcase_11 AC 63 ms
8,320 KB
testcase_12 AC 57 ms
7,296 KB
testcase_13 AC 13 ms
6,940 KB
testcase_14 AC 44 ms
7,936 KB
testcase_15 AC 64 ms
8,576 KB
testcase_16 AC 59 ms
9,088 KB
testcase_17 AC 17 ms
6,944 KB
testcase_18 AC 43 ms
6,944 KB
testcase_19 AC 44 ms
6,944 KB
testcase_20 AC 57 ms
7,040 KB
testcase_21 AC 35 ms
6,944 KB
testcase_22 AC 74 ms
9,344 KB
testcase_23 AC 18 ms
6,944 KB
testcase_24 AC 32 ms
6,940 KB
testcase_25 AC 44 ms
6,944 KB
testcase_26 AC 59 ms
7,424 KB
testcase_27 AC 75 ms
8,960 KB
testcase_28 AC 34 ms
6,944 KB
testcase_29 AC 49 ms
6,940 KB
testcase_30 AC 27 ms
6,944 KB
testcase_31 AC 28 ms
6,940 KB
testcase_32 AC 26 ms
6,940 KB
testcase_33 AC 39 ms
6,944 KB
testcase_34 AC 36 ms
13,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize("Ofast")
#include <bits/stdc++.h>
using namespace std;
typedef long long int ll;
typedef unsigned long long ull;

mt19937_64 rng(chrono::steady_clock::now().time_since_epoch().count());
ll myRand(ll B) {
    return (ull)rng() % B;
}

int main(){
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    int n,q; cin >> n >> q;
    vector<vector<int>> g(n);
    for(int i=0;i<n-1;i++){
        int x,y; cin >> x >> y;
        x--; y--;
        g[x].push_back(y);
        g[y].push_back(x);
    }    
    vector<int> d(n);
    auto dfs=[&](auto dfs,int s,int p)->void{
        d[s]=1;
        for(int t:g[s]){
            if(t==p)continue;
            dfs(dfs,t,s);
            d[s]+=d[t];
        }
    };
    dfs(dfs,0,-1);
    ll res=0;
    for(int i=0;i<q;i++){
        ll p,x; cin >> p >> x;
        p--;
        res+=(ll)d[p]*x;
        printf("%lld\n",res);
    }
}
0