結果

問題 No.1637 Easy Tree Query
ユーザー Nzt3Nzt3
提出日時 2022-10-10 22:32:00
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 73 ms / 2,000 ms
コード長 865 bytes
コンパイル時間 2,703 ms
コンパイル使用メモリ 211,000 KB
実行使用メモリ 10,240 KB
最終ジャッジ日時 2024-06-24 20:19:14
合計ジャッジ時間 8,061 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 60 ms
9,344 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 27 ms
6,400 KB
testcase_05 AC 42 ms
5,632 KB
testcase_06 AC 29 ms
5,376 KB
testcase_07 AC 13 ms
5,376 KB
testcase_08 AC 20 ms
5,760 KB
testcase_09 AC 48 ms
8,064 KB
testcase_10 AC 21 ms
5,376 KB
testcase_11 AC 63 ms
8,576 KB
testcase_12 AC 53 ms
7,296 KB
testcase_13 AC 13 ms
5,376 KB
testcase_14 AC 46 ms
8,192 KB
testcase_15 AC 60 ms
8,832 KB
testcase_16 AC 56 ms
9,216 KB
testcase_17 AC 16 ms
5,376 KB
testcase_18 AC 39 ms
5,632 KB
testcase_19 AC 43 ms
6,016 KB
testcase_20 AC 53 ms
7,168 KB
testcase_21 AC 37 ms
6,656 KB
testcase_22 AC 69 ms
9,600 KB
testcase_23 AC 18 ms
5,376 KB
testcase_24 AC 32 ms
6,656 KB
testcase_25 AC 42 ms
5,376 KB
testcase_26 AC 58 ms
7,552 KB
testcase_27 AC 73 ms
9,216 KB
testcase_28 AC 33 ms
5,376 KB
testcase_29 AC 46 ms
7,040 KB
testcase_30 AC 28 ms
6,912 KB
testcase_31 AC 24 ms
5,376 KB
testcase_32 AC 27 ms
5,376 KB
testcase_33 AC 37 ms
5,376 KB
testcase_34 AC 36 ms
10,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
const int mod=1e9+7;
int main(){
  ios::sync_with_stdio(false);
  cin.tie(nullptr);
  int N,Q;
  cin>>N>>Q;
  vector<vector<int>>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>chi(N,1),p(N);
  stack<array<int,2>>dfs;
  dfs.push({0,0});
  vector<bool>vst(N);
  vst[0]=true;
  while(dfs.size()){
    int v=dfs.top()[0],c=dfs.top()[1];
    dfs.pop();
    for(;c<G[v].size();c++){
      if(!vst[G[v][c]]){
        vst[G[v][c]]=true;
        dfs.push({v,c+1});
        dfs.push({G[v][c],0});
        p[G[v][c]]=v;
        break;
      }
    }
    if(c==G[v].size()&&v!=0){
      chi[p[v]]+=chi[v];
    }
  }
  long long ans=0;
  for(int i=0;i<Q;i++){
    int v;
    long long x;
    cin>>v>>x;
    ans+=chi[v-1]*x;
    cout<<ans<<'\n';
  }
}
0