結果

問題 No.1637 Easy Tree Query
ユーザー monnumonnu
提出日時 2021-08-17 23:51:54
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 278 ms / 2,000 ms
コード長 717 bytes
コンパイル時間 3,649 ms
コンパイル使用メモリ 230,724 KB
実行使用メモリ 18,560 KB
最終ジャッジ日時 2024-10-11 00:41:29
合計ジャッジ時間 12,358 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 267 ms
9,216 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 61 ms
6,816 KB
testcase_05 AC 223 ms
6,816 KB
testcase_06 AC 143 ms
6,816 KB
testcase_07 AC 78 ms
6,820 KB
testcase_08 AC 50 ms
6,816 KB
testcase_09 AC 169 ms
7,808 KB
testcase_10 AC 101 ms
6,820 KB
testcase_11 AC 241 ms
8,320 KB
testcase_12 AC 234 ms
7,168 KB
testcase_13 AC 36 ms
6,816 KB
testcase_14 AC 104 ms
7,936 KB
testcase_15 AC 218 ms
8,576 KB
testcase_16 AC 159 ms
9,088 KB
testcase_17 AC 65 ms
6,816 KB
testcase_18 AC 204 ms
6,820 KB
testcase_19 AC 200 ms
6,816 KB
testcase_20 AC 246 ms
6,912 KB
testcase_21 AC 122 ms
6,816 KB
testcase_22 AC 253 ms
9,216 KB
testcase_23 AC 62 ms
6,816 KB
testcase_24 AC 95 ms
6,824 KB
testcase_25 AC 226 ms
6,820 KB
testcase_26 AC 252 ms
7,296 KB
testcase_27 AC 278 ms
8,960 KB
testcase_28 AC 161 ms
6,816 KB
testcase_29 AC 191 ms
6,912 KB
testcase_30 AC 57 ms
6,816 KB
testcase_31 AC 178 ms
6,820 KB
testcase_32 AC 97 ms
6,816 KB
testcase_33 AC 211 ms
6,820 KB
testcase_34 AC 79 ms
18,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#include <atcoder/all>
using namespace atcoder;
using ll=long long;
using Graph=vector<vector<int>>;
#define MAX 2000000
#define MOD 1000000007
#define INF 1000000000

void dfs(Graph &G,int v,int p,vector<int> &cnt){
  cnt[v]=1;
  for(auto nv:G[v]){
    if(nv==p){
      continue;
    }
    dfs(G,nv,v,cnt);
    cnt[v]+=cnt[nv];
  }
}

int main(){
  int N,Q;
  cin>>N>>Q;
  Graph G(N);
  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);
  }
  vector<int> cnt(N);
  dfs(G,0,-1,cnt);
  ll ans=0;
  for(int i=0;i<Q;i++){
    int p,x;
    cin>>p>>x;
    p--;
    ans+=(ll)cnt[p]*(ll)x;
    cout<<ans<<'\n';
  }
}
0