結果

問題 No.1637 Easy Tree Query
ユーザー _umbrella_kasa_umbrella_kasa
提出日時 2021-08-08 16:18:54
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,136 bytes
コンパイル時間 2,734 ms
コンパイル使用メモリ 216,688 KB
実行使用メモリ 18,560 KB
最終ジャッジ日時 2024-09-19 13:04:59
合計ジャッジ時間 17,141 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,752 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 549 ms
13,056 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 185 ms
8,320 KB
testcase_05 AC 292 ms
6,912 KB
testcase_06 AC 196 ms
6,016 KB
testcase_07 AC 74 ms
5,376 KB
testcase_08 AC 147 ms
7,168 KB
testcase_09 AC 358 ms
10,624 KB
testcase_10 AC 133 ms
5,504 KB
testcase_11 AC 444 ms
11,420 KB
testcase_12 AC 389 ms
9,600 KB
testcase_13 AC 90 ms
5,504 KB
testcase_14 AC 320 ms
10,876 KB
testcase_15 AC 463 ms
11,776 KB
testcase_16 AC 467 ms
12,800 KB
testcase_17 AC 110 ms
5,632 KB
testcase_18 AC 268 ms
6,912 KB
testcase_19 AC 285 ms
7,564 KB
testcase_20 AC 367 ms
9,344 KB
testcase_21 AC 238 ms
8,448 KB
testcase_22 AC 544 ms
12,928 KB
testcase_23 AC 116 ms
6,144 KB
testcase_24 AC 211 ms
8,448 KB
testcase_25 AC 298 ms
6,528 KB
testcase_26 AC 419 ms
9,896 KB
testcase_27 AC 548 ms
12,672 KB
testcase_28 AC 224 ms
6,400 KB
testcase_29 AC 323 ms
9,216 KB
testcase_30 AC 210 ms
9,036 KB
testcase_31 AC 161 ms
5,376 KB
testcase_32 AC 174 ms
6,656 KB
testcase_33 AC 258 ms
5,504 KB
testcase_34 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _GLIBCXX_DEBUG
#include <bits/stdc++.h>
using namespace std;
using Graph = vector<vector<int>>;
int main() {
  int N,Q;
  cin >> N >> Q;
  Graph G(N+1);
  for (int i=0; i<N-1; i++) {
    int a,b;
    cin >> a >> b;
    G[a].push_back(b);
    G[b].push_back(a);
  }
  vector<int>depth(N+1,0);
  stack<int>S;
  S.push(1);
  vector<bool>seen(N+1,false);
  seen[1]=true;
  while(S.size()!=0) {
    int x=S.top();
    S.pop();
    for (auto next: G[x]) {
      if (seen[next]) {
        continue;
      }
      else {
        depth[next]=depth[x]+1;
        seen[next]=true;
        S.push(next);
      }
    }
  }
  vector<long int>P(N+1,1);
  P[1]=N;
  for (int i=2; i<=N; i++) {
    stack<int>A;
    A.push(i);
    vector<bool>see(N+1,false);
    see[i]=true;
    while (A.size()!=0) {
      int x=A.top();
      A.pop();
      for (auto next: G[x]) {
        if (!(see[next]) && depth[next]>depth[x]) {
          see[next]=true;
          A.push(next);
          P[i]++;
        }
      }
    }
  }
  long int ans=0;
  for (int i=0; i<Q; i++) {
    long int p,x;
    cin >> p >> x;
    ans+=P[p]*x;
    cout << ans << endl;
  }
}
0