結果

問題 No.1637 Easy Tree Query
ユーザー 👑 CleyLCleyL
提出日時 2021-12-27 10:07:54
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 271 ms / 2,000 ms
コード長 634 bytes
コンパイル時間 671 ms
コンパイル使用メモリ 70,812 KB
実行使用メモリ 17,664 KB
最終ジャッジ日時 2024-09-25 03:42:14
合計ジャッジ時間 9,379 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 263 ms
9,800 KB
testcase_03 AC 3 ms
6,944 KB
testcase_04 AC 59 ms
7,928 KB
testcase_05 AC 214 ms
7,296 KB
testcase_06 AC 144 ms
7,040 KB
testcase_07 AC 76 ms
6,944 KB
testcase_08 AC 46 ms
7,424 KB
testcase_09 AC 163 ms
8,924 KB
testcase_10 AC 99 ms
6,944 KB
testcase_11 AC 227 ms
9,212 KB
testcase_12 AC 225 ms
8,456 KB
testcase_13 AC 36 ms
6,996 KB
testcase_14 AC 101 ms
8,960 KB
testcase_15 AC 216 ms
9,408 KB
testcase_16 AC 151 ms
9,600 KB
testcase_17 AC 64 ms
6,944 KB
testcase_18 AC 198 ms
7,296 KB
testcase_19 AC 193 ms
7,752 KB
testcase_20 AC 241 ms
8,392 KB
testcase_21 AC 118 ms
8,012 KB
testcase_22 AC 247 ms
9,800 KB
testcase_23 AC 63 ms
6,940 KB
testcase_24 AC 93 ms
7,936 KB
testcase_25 AC 223 ms
7,168 KB
testcase_26 AC 246 ms
8,576 KB
testcase_27 AC 271 ms
9,668 KB
testcase_28 AC 163 ms
7,204 KB
testcase_29 AC 188 ms
8,320 KB
testcase_30 AC 55 ms
8,224 KB
testcase_31 AC 178 ms
6,944 KB
testcase_32 AC 96 ms
7,424 KB
testcase_33 AC 209 ms
6,944 KB
testcase_34 AC 77 ms
17,664 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
using namespace std;
long long child[100001];
bool lck[100001];
vector<int> V[100001];
int dfs(int nw,int n){
  int ret = 0;
  for(int i = 0; V[nw].size() > i; i++){
    if(lck[V[nw][i]])continue;
    lck[V[nw][i]] = true;
    ret += dfs(V[nw][i],n);
  }
  return child[nw] = ret+1;
}
int main(){
  int n,q;cin>>n>>q;
  for(int i = 0; n-1 > i; i++){
    int s,t;cin>>s>>t;
    s--;t--;
    V[s].push_back(t);
    V[t].push_back(s);
  }
  lck[0] = true;
  dfs(0,n);
  long long ans = 0;
  for(int i = 0; q > i; i++){
    int p,x;cin>>p>>x;p--;
    ans += child[p]*x;
    cout << ans << endl;
  }
}
0