結果

問題 No.1637 Easy Tree Query
ユーザー Nzt3Nzt3
提出日時 2021-08-06 21:53:14
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 297 ms / 2,000 ms
コード長 874 bytes
コンパイル時間 1,973 ms
コンパイル使用メモリ 184,652 KB
実行使用メモリ 11,256 KB
最終ジャッジ日時 2024-09-17 03:50:21
合計ジャッジ時間 9,711 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 270 ms
11,256 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 68 ms
7,296 KB
testcase_05 AC 225 ms
6,272 KB
testcase_06 AC 147 ms
5,504 KB
testcase_07 AC 76 ms
5,376 KB
testcase_08 AC 53 ms
6,400 KB
testcase_09 AC 178 ms
9,216 KB
testcase_10 AC 102 ms
5,376 KB
testcase_11 AC 248 ms
9,856 KB
testcase_12 AC 247 ms
8,320 KB
testcase_13 AC 40 ms
5,376 KB
testcase_14 AC 112 ms
9,344 KB
testcase_15 AC 233 ms
10,112 KB
testcase_16 AC 174 ms
10,880 KB
testcase_17 AC 68 ms
5,376 KB
testcase_18 AC 209 ms
6,144 KB
testcase_19 AC 204 ms
6,784 KB
testcase_20 AC 255 ms
8,320 KB
testcase_21 AC 128 ms
7,424 KB
testcase_22 AC 270 ms
11,008 KB
testcase_23 AC 66 ms
5,504 KB
testcase_24 AC 103 ms
7,424 KB
testcase_25 AC 224 ms
6,016 KB
testcase_26 AC 263 ms
8,576 KB
testcase_27 AC 297 ms
10,752 KB
testcase_28 AC 163 ms
5,760 KB
testcase_29 AC 198 ms
7,936 KB
testcase_30 AC 67 ms
7,936 KB
testcase_31 AC 173 ms
5,376 KB
testcase_32 AC 104 ms
6,144 KB
testcase_33 AC 213 ms
5,376 KB
testcase_34 AC 75 ms
11,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
int main(){
  int N,Q;
  cin>>N>>Q;
  vector<vector<int>>G(N);
  for(int i=0,a,b;i<N-1;i++){
    cin>>a>>b;
    --a,--b;
    G[a].push_back(b);
    G[b].push_back(a);
  }
  vector<array<int,2>>dist(N);
  for(int i=0;i<N;i++){
    dist[i]={1000000,i};
  }
  dist[0][0]=0;
  queue<int>bfs;
  bfs.push(0);
  while(bfs.size()){
    int t=bfs.front();
    bfs.pop();
    for(int i:G[t]){
      if(dist[i][0]>dist[t][0]+1){
        dist[i][0]=dist[t][0]+1;
        bfs.push(i);
      }
    }
  }
  auto dist2=dist;
  sort(dist.begin(),dist.end(),greater<array<int,2>>());
  vector<long long>sz(N,1);
  for(int i=0;i<N;i++){
    for(int j:G[dist[i][1]]){
      if(dist2[j][0]<dist[i][0]){
        sz[j]+=sz[dist[i][1]];
      }
    }
  }
  long long ans=0,x,p;
  while(Q--){
    cin>>p>>x;
    ans+=x*sz[p-1];
    cout<<ans<<'\n';
  }
}
0