結果

問題 No.1637 Easy Tree Query
ユーザー chocoruskchocorusk
提出日時 2021-08-06 21:23:24
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 287 ms / 2,000 ms
コード長 1,096 bytes
コンパイル時間 3,428 ms
コンパイル使用メモリ 188,636 KB
実行使用メモリ 15,488 KB
最終ジャッジ日時 2024-09-17 03:20:33
合計ジャッジ時間 10,948 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,632 KB
testcase_01 AC 3 ms
5,760 KB
testcase_02 AC 265 ms
9,280 KB
testcase_03 AC 3 ms
5,632 KB
testcase_04 AC 65 ms
7,680 KB
testcase_05 AC 221 ms
7,168 KB
testcase_06 AC 146 ms
6,784 KB
testcase_07 AC 80 ms
5,888 KB
testcase_08 AC 52 ms
7,296 KB
testcase_09 AC 170 ms
8,576 KB
testcase_10 AC 101 ms
6,656 KB
testcase_11 AC 242 ms
8,704 KB
testcase_12 AC 237 ms
8,192 KB
testcase_13 AC 38 ms
6,944 KB
testcase_14 AC 109 ms
8,576 KB
testcase_15 AC 223 ms
8,960 KB
testcase_16 AC 166 ms
9,216 KB
testcase_17 AC 67 ms
6,940 KB
testcase_18 AC 206 ms
7,132 KB
testcase_19 AC 204 ms
7,424 KB
testcase_20 AC 252 ms
7,944 KB
testcase_21 AC 125 ms
7,784 KB
testcase_22 AC 255 ms
9,344 KB
testcase_23 AC 64 ms
6,944 KB
testcase_24 AC 97 ms
7,680 KB
testcase_25 AC 229 ms
7,040 KB
testcase_26 AC 260 ms
8,320 KB
testcase_27 AC 287 ms
9,088 KB
testcase_28 AC 167 ms
6,940 KB
testcase_29 AC 198 ms
7,936 KB
testcase_30 AC 59 ms
7,936 KB
testcase_31 AC 179 ms
6,944 KB
testcase_32 AC 100 ms
7,040 KB
testcase_33 AC 216 ms
6,940 KB
testcase_34 AC 75 ms
15,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <iostream>
#include <string>
#include <cmath>
#include <bitset>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
#include <complex>
#include <unordered_map>
#include <unordered_set>
#include <random>
#include <cassert>
#include <fstream>
#include <utility>
#include <functional>
#include <time.h>
#include <stack>
#include <array>
#include <list>
#include <atcoder/all>
#define popcount __builtin_popcount
using namespace std;
using namespace atcoder;
typedef long long ll;
typedef pair<int, int> P;
int n, q;
vector<int> g[100010];
int c[100010];
void dfs(int x, int p){
    c[x]=1;
    for(auto y:g[x]){
        if(y==p) continue;
        dfs(y, x);
        c[x]+=c[y];
    }
}
int main()
{
	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);
    }
    dfs(0, -1);
    ll ans=0;
    for(int i=0; i<q; i++){
        int p; ll x; cin>>p>>x; p--;
        ans+=c[p]*x;
        cout<<ans<<endl;
    }
    return 0;
}
0