結果

問題 No.1637 Easy Tree Query
ユーザー harurunharurun
提出日時 2021-06-19 01:00:16
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 306 ms / 2,000 ms
コード長 648 bytes
コンパイル時間 897 ms
コンパイル使用メモリ 80,596 KB
実行使用メモリ 15,104 KB
最終ジャッジ日時 2024-09-17 03:17:12
合計ジャッジ時間 8,726 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 266 ms
11,264 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 67 ms
7,296 KB
testcase_05 AC 226 ms
6,940 KB
testcase_06 AC 146 ms
6,940 KB
testcase_07 AC 77 ms
6,940 KB
testcase_08 AC 54 ms
6,944 KB
testcase_09 AC 179 ms
9,088 KB
testcase_10 AC 103 ms
6,944 KB
testcase_11 AC 247 ms
9,728 KB
testcase_12 AC 244 ms
8,320 KB
testcase_13 AC 38 ms
6,944 KB
testcase_14 AC 116 ms
9,344 KB
testcase_15 AC 231 ms
10,112 KB
testcase_16 AC 175 ms
10,880 KB
testcase_17 AC 66 ms
6,944 KB
testcase_18 AC 211 ms
6,940 KB
testcase_19 AC 206 ms
6,940 KB
testcase_20 AC 254 ms
8,192 KB
testcase_21 AC 124 ms
7,424 KB
testcase_22 AC 264 ms
10,880 KB
testcase_23 AC 64 ms
6,940 KB
testcase_24 AC 102 ms
7,552 KB
testcase_25 AC 228 ms
6,940 KB
testcase_26 AC 262 ms
8,704 KB
testcase_27 AC 306 ms
10,496 KB
testcase_28 AC 163 ms
6,940 KB
testcase_29 AC 200 ms
7,936 KB
testcase_30 AC 64 ms
7,808 KB
testcase_31 AC 178 ms
6,944 KB
testcase_32 AC 102 ms
6,940 KB
testcase_33 AC 214 ms
6,944 KB
testcase_34 AC 76 ms
15,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <stdio.h>
#include <vector>
#include <deque>
using namespace std;
#define ll long long

vector<vector<ll>>d;
vector<ll>cnt;
vector<ll>B;

void f(int i){
  B.at(i)=1;
  for(ll j:d.at(i)){
    if(B.at(j)==0){
      f(j);
      cnt.at(i)+=cnt.at(j);
    }
  }
  return;
}

int main(){
  ll N,Q,a,b,ans=0,p,x;
  cin>>N>>Q;
  d.resize(N);
  cnt.resize(N);
  B.resize(N);
  for(int i=0;i<N-1;i++){
    cnt.at(i)=1;
    cin>>a>>b;
    d.at(a-1).push_back(b-1);
    d.at(b-1).push_back(a-1);
  }
  cnt.at(N-1)=1;
  f(0);
  for(int i=0;i<Q;i++){
    cin>>p>>x;
    ans+=cnt.at(p-1)*x;
    printf("%lld\n",ans);
  }
  return 0;
}
0