結果

問題 No.1637 Easy Tree Query
ユーザー milanis48663220milanis48663220
提出日時 2021-08-06 21:25:39
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 208 ms / 2,000 ms
コード長 1,285 bytes
コンパイル時間 1,269 ms
コンパイル使用メモリ 119,972 KB
実行使用メモリ 16,000 KB
最終ジャッジ日時 2024-09-17 03:31:50
合計ジャッジ時間 7,399 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
6,816 KB
testcase_01 AC 3 ms
6,944 KB
testcase_02 AC 183 ms
9,600 KB
testcase_03 AC 3 ms
6,940 KB
testcase_04 AC 37 ms
7,808 KB
testcase_05 AC 164 ms
7,168 KB
testcase_06 AC 102 ms
7,360 KB
testcase_07 AC 61 ms
6,944 KB
testcase_08 AC 31 ms
7,872 KB
testcase_09 AC 113 ms
8,832 KB
testcase_10 AC 72 ms
6,940 KB
testcase_11 AC 168 ms
9,216 KB
testcase_12 AC 169 ms
8,412 KB
testcase_13 AC 26 ms
6,944 KB
testcase_14 AC 68 ms
8,832 KB
testcase_15 AC 151 ms
9,448 KB
testcase_16 AC 109 ms
9,856 KB
testcase_17 AC 47 ms
6,944 KB
testcase_18 AC 151 ms
7,296 KB
testcase_19 AC 146 ms
7,552 KB
testcase_20 AC 178 ms
8,328 KB
testcase_21 AC 83 ms
7,892 KB
testcase_22 AC 182 ms
9,796 KB
testcase_23 AC 46 ms
6,940 KB
testcase_24 AC 64 ms
7,744 KB
testcase_25 AC 162 ms
7,168 KB
testcase_26 AC 184 ms
8,772 KB
testcase_27 AC 208 ms
9,728 KB
testcase_28 AC 123 ms
7,040 KB
testcase_29 AC 146 ms
8,320 KB
testcase_30 AC 34 ms
8,192 KB
testcase_31 AC 140 ms
6,944 KB
testcase_32 AC 70 ms
7,116 KB
testcase_33 AC 160 ms
6,940 KB
testcase_34 AC 37 ms
16,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <iomanip>
#include <vector>
#include <queue>
#include <set>
#include <map>
#include <tuple>
#include <cmath>
#include <numeric>
#include <functional>
#include <cassert>

#define debug_value(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << #x << "=" << x << endl;
#define debug(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << x << endl;

template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; }
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; }

using namespace std;
typedef long long ll;

vector<int> g[100000];
ll ch[100000];
bool used[100000];

void dfs(int v){
    used[v] = true;
    ch[v] = 1;
    for(int to: g[v]){
        if(!used[to]) {
            dfs(to);
            ch[v] += ch[to];
        }
    }
}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout << setprecision(10) << fixed;
    int n, q; cin >> n >> q;
    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);
    }
    ll ans = 0;
    dfs(0);
    while(q--){
        int p, x; cin >> p >> x;
        p--;
        ans += ch[p]*x;
        cout << ans << endl;
    }
}
0