結果

問題 No.1637 Easy Tree Query
ユーザー hayatenhayaten
提出日時 2021-08-07 14:08:01
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 298 ms / 2,000 ms
コード長 2,066 bytes
コンパイル時間 5,166 ms
コンパイル使用メモリ 282,312 KB
実行使用メモリ 19,140 KB
最終ジャッジ日時 2024-09-17 21:40:58
合計ジャッジ時間 15,327 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 270 ms
11,288 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 60 ms
9,028 KB
testcase_05 AC 229 ms
6,944 KB
testcase_06 AC 143 ms
6,944 KB
testcase_07 AC 76 ms
6,940 KB
testcase_08 AC 48 ms
8,464 KB
testcase_09 AC 165 ms
9,816 KB
testcase_10 AC 99 ms
6,940 KB
testcase_11 AC 234 ms
10,516 KB
testcase_12 AC 236 ms
8,520 KB
testcase_13 AC 36 ms
6,948 KB
testcase_14 AC 109 ms
10,064 KB
testcase_15 AC 228 ms
10,788 KB
testcase_16 AC 174 ms
12,532 KB
testcase_17 AC 67 ms
6,940 KB
testcase_18 AC 212 ms
8,144 KB
testcase_19 AC 205 ms
8,688 KB
testcase_20 AC 258 ms
8,320 KB
testcase_21 AC 127 ms
7,688 KB
testcase_22 AC 270 ms
12,492 KB
testcase_23 AC 63 ms
6,940 KB
testcase_24 AC 101 ms
7,808 KB
testcase_25 AC 231 ms
8,108 KB
testcase_26 AC 264 ms
10,656 KB
testcase_27 AC 298 ms
11,356 KB
testcase_28 AC 162 ms
7,592 KB
testcase_29 AC 202 ms
8,192 KB
testcase_30 AC 63 ms
8,192 KB
testcase_31 AC 178 ms
6,940 KB
testcase_32 AC 102 ms
6,940 KB
testcase_33 AC 215 ms
7,084 KB
testcase_34 AC 79 ms
19,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma region Macros
// #pragma GCC target("avx2")
#pragma GCC optimize("O3")
#include <bits/stdc++.h>
#include <atcoder/all>
#define rep(i, n) for (int i = 0; i < (n); i++)
#define rrep(i, n) for (int i = (n - 1); i >= 0; i--)
#define ALL(v) v.begin(), v.end()
#define endl "\n"
#define popcount(bit) __builtin_popcount(bit)
#define popcountll(bit) __builtin_popcountll(bit)
#define pb push_back
#define eb emplace_back
using namespace std;
using namespace atcoder;
using P = pair<int, int>;
using PL = pair<long long, long long>;
using Graph = vector<vector<int>>;
typedef long long ll;
template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; }
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; }
const int dx[4] = {1, 0, -1, 0};
const int dy[4] = {0, 1, 0, -1};
const int fx[8] = {0, 1, 1, 1, 0, -1, -1, -1};
const int fy[8] = {1, 1, 0, -1, -1, -1, 0, 1};
const ll INF = (1LL <<60);

ll op(ll a, ll b) {
  return (a ^ b);
}
ll e() {
  return (ll)(0);
}

int dep[200002];
int in[200002];
int out[200002];
int tree_size[200002];
int k;
Graph G;

//通った頂点を並べたもの
vector<int> EularTour_V;
//通った辺を並べたもの
vector<int> EularTour_E;

void dfs(int v,int p, int d) {
  EularTour_V.pb(v);
  in[v] = k;
  k++;
  dep[v] = d;
  tree_size[v] = 1;
  for (int u : G[v]){
    if(u ==p)continue;
    dfs(u, v, d + 1);
    EularTour_V.pb(v);
    tree_size[v] += tree_size[u];
  }
  out[v] = k;
  k++;
}

//頂点iの部分木クエリは半開区間[in[i], out[i])となる。
//in[i]のみに値を入れる,out[i]には単位元を入れるとセグ木が正しく動く
//1点更新のセグ木のみverify

// verify https://yukicoder.me/submissions/686696
int main() {
  int n, q;
  cin >> n >> q;
  G.resize(n);
  rep(i, n-1){
    int a, b;
    cin >> a >> b;
    a--, b--;
    G[a].pb(b);
    G[b].pb(a);
  }
  dfs(0, -1, 0);
  ll sum = 0;
  rep(i, q){
    int a;
    ll b;
    cin >> a >> b;
    a--;
    sum += b * tree_size[a];
    cout << sum << endl;
  }
}
0