結果

問題 No.1637 Easy Tree Query
ユーザー kappybarkappybar
提出日時 2021-08-08 20:29:46
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 256 ms / 2,000 ms
コード長 1,094 bytes
コンパイル時間 1,520 ms
コンパイル使用メモリ 172,164 KB
実行使用メモリ 12,544 KB
最終ジャッジ日時 2024-09-19 17:11:06
合計ジャッジ時間 8,446 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 256 ms
9,088 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 50 ms
6,144 KB
testcase_05 AC 194 ms
5,376 KB
testcase_06 AC 127 ms
5,376 KB
testcase_07 AC 69 ms
5,376 KB
testcase_08 AC 41 ms
5,632 KB
testcase_09 AC 144 ms
7,680 KB
testcase_10 AC 85 ms
5,376 KB
testcase_11 AC 197 ms
8,192 KB
testcase_12 AC 204 ms
7,168 KB
testcase_13 AC 32 ms
5,376 KB
testcase_14 AC 86 ms
7,808 KB
testcase_15 AC 182 ms
8,448 KB
testcase_16 AC 137 ms
8,960 KB
testcase_17 AC 58 ms
5,376 KB
testcase_18 AC 180 ms
5,376 KB
testcase_19 AC 177 ms
5,888 KB
testcase_20 AC 219 ms
6,912 KB
testcase_21 AC 110 ms
6,400 KB
testcase_22 AC 220 ms
9,088 KB
testcase_23 AC 56 ms
5,376 KB
testcase_24 AC 85 ms
6,400 KB
testcase_25 AC 199 ms
5,376 KB
testcase_26 AC 215 ms
7,296 KB
testcase_27 AC 242 ms
8,832 KB
testcase_28 AC 143 ms
5,376 KB
testcase_29 AC 164 ms
6,784 KB
testcase_30 AC 49 ms
6,784 KB
testcase_31 AC 160 ms
5,376 KB
testcase_32 AC 91 ms
5,504 KB
testcase_33 AC 192 ms
5,376 KB
testcase_34 AC 67 ms
12,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define chmin(x,y) x = min((x),(y))
#define chmax(x,y) x = max((x),(y))
#define popcount(x) __builtin_popcount(x)
using namespace std;
using ll = long long ;
using P = pair<int,int> ;
using pll = pair<long long,long long>;
const int INF = 1e9;
const long long LINF = 1e17;
const int MOD = 1000000007;
//const int MOD = 998244353;
const double PI = 3.14159265358979323846;

int main(){
    int n,q;
    cin >> n >> q;
    vector<vector<int>> tree(n);
    rep(i,n-1){
        int a,b;
        cin >> a >> b;
        --a;--b;
        tree[a].push_back(b);
        tree[b].push_back(a);
    }

    vector<int> sz(n,0);
    auto dfs = [&](auto&& dfs,int i,int p) -> int {
        sz[i] = 1;
        for(int j:tree[i]){
            if(j == p) continue;
            sz[i] += dfs(dfs,j,i);
        }
        return sz[i];
    };
    dfs(dfs,0,-1);

    ll ans = 0;
    for(int i=0;i<q;i++){
        ll p;
        ll x;
        cin >> p >> x;
        --p;
        ans += x * sz[p];
        cout << ans << endl;
    }

    return 0;
}
0