結果

問題 No.1637 Easy Tree Query
ユーザー umezoumezo
提出日時 2021-08-06 21:26:28
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 171 ms / 2,000 ms
コード長 647 bytes
コンパイル時間 2,328 ms
コンパイル使用メモリ 204,496 KB
実行使用メモリ 15,812 KB
最終ジャッジ日時 2024-09-17 03:34:08
合計ジャッジ時間 7,307 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,812 KB
testcase_01 AC 3 ms
6,944 KB
testcase_02 AC 171 ms
9,600 KB
testcase_03 AC 3 ms
6,940 KB
testcase_04 AC 30 ms
7,808 KB
testcase_05 AC 143 ms
7,168 KB
testcase_06 AC 93 ms
6,940 KB
testcase_07 AC 53 ms
6,940 KB
testcase_08 AC 24 ms
7,752 KB
testcase_09 AC 95 ms
8,704 KB
testcase_10 AC 65 ms
6,944 KB
testcase_11 AC 138 ms
9,284 KB
testcase_12 AC 140 ms
8,260 KB
testcase_13 AC 22 ms
6,944 KB
testcase_14 AC 51 ms
8,672 KB
testcase_15 AC 128 ms
9,284 KB
testcase_16 AC 82 ms
9,600 KB
testcase_17 AC 40 ms
6,944 KB
testcase_18 AC 128 ms
7,168 KB
testcase_19 AC 130 ms
7,424 KB
testcase_20 AC 154 ms
8,320 KB
testcase_21 AC 71 ms
7,808 KB
testcase_22 AC 165 ms
9,672 KB
testcase_23 AC 39 ms
6,940 KB
testcase_24 AC 56 ms
7,912 KB
testcase_25 AC 147 ms
7,112 KB
testcase_26 AC 158 ms
8,644 KB
testcase_27 AC 160 ms
9,540 KB
testcase_28 AC 105 ms
7,040 KB
testcase_29 AC 114 ms
8,064 KB
testcase_30 AC 26 ms
8,064 KB
testcase_31 AC 123 ms
6,944 KB
testcase_32 AC 60 ms
7,168 KB
testcase_33 AC 137 ms
6,940 KB
testcase_34 AC 33 ms
15,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define ALL(v) v.begin(),v.end()
typedef long long ll;
 
#include<bits/stdc++.h>
using namespace std;

vector<int> G[100100];
ll A[100100];

void dfs(int v,int p){
  A[v]=1;
  for(auto nv:G[v]){
    if(nv==p) continue;
    dfs(nv,v);
    A[v]+=A[nv];
  }
} 
 
int main(){
  ios::sync_with_stdio(false);
  std::cin.tie(nullptr);
  
  int n,q;
  cin>>n>>q;
  rep(i,n-1){
    int a,b;
    cin>>a>>b;
    a--,b--;
    G[a].push_back(b);
    G[b].push_back(a);
  }
  
  dfs(0,-1);
  
  ll ans=0;
  rep(i,q){
    ll p,x;
    cin>>p>>x;
    p--;
    ans+=A[p]*x;
    cout<<ans<<endl;
  }
  
    
  return 0;
}
0