結果

問題 No.1637 Easy Tree Query
ユーザー 👑 NachiaNachia
提出日時 2021-08-06 21:36:36
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 84 ms / 2,000 ms
コード長 840 bytes
コンパイル時間 976 ms
コンパイル使用メモリ 88,432 KB
実行使用メモリ 12,288 KB
最終ジャッジ日時 2024-09-17 03:45:47
合計ジャッジ時間 5,276 ms
ジャッジサーバーID
(参考情報)
judge6 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 63 ms
9,088 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 29 ms
6,944 KB
testcase_05 AC 45 ms
6,944 KB
testcase_06 AC 31 ms
6,944 KB
testcase_07 AC 14 ms
6,940 KB
testcase_08 AC 21 ms
6,940 KB
testcase_09 AC 56 ms
7,680 KB
testcase_10 AC 23 ms
6,944 KB
testcase_11 AC 69 ms
8,192 KB
testcase_12 AC 60 ms
6,944 KB
testcase_13 AC 14 ms
6,944 KB
testcase_14 AC 49 ms
7,808 KB
testcase_15 AC 69 ms
8,448 KB
testcase_16 AC 60 ms
9,004 KB
testcase_17 AC 19 ms
6,944 KB
testcase_18 AC 42 ms
6,944 KB
testcase_19 AC 46 ms
6,940 KB
testcase_20 AC 59 ms
6,944 KB
testcase_21 AC 38 ms
6,944 KB
testcase_22 AC 80 ms
8,960 KB
testcase_23 AC 19 ms
6,944 KB
testcase_24 AC 36 ms
6,944 KB
testcase_25 AC 44 ms
6,940 KB
testcase_26 AC 62 ms
7,296 KB
testcase_27 AC 84 ms
8,704 KB
testcase_28 AC 36 ms
6,940 KB
testcase_29 AC 49 ms
6,944 KB
testcase_30 AC 34 ms
6,940 KB
testcase_31 AC 28 ms
6,940 KB
testcase_32 AC 29 ms
6,940 KB
testcase_33 AC 39 ms
6,940 KB
testcase_34 AC 36 ms
12,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <utility>
#include <atcoder/maxflow>
using namespace std;
using i32 = int32_t;
using i64 = int64_t;
#define rep(i,n) for(int i=0; i<(n); i++)


int N, Q;
vector<vector<int>> E;
vector<int> Z;
vector<i64> A;

int main(){
  cin >> N >> Q;
  E.resize(N);
  rep(i,N-1){
    int u,v; cin >> u >> v; u--; v--;
    E[u].push_back(v);
    E[v].push_back(u);
  }
  Z.assign(N,1);
  auto dfs = [&](int p,int pre,auto dfs)->void{
    for(int e : E[p]) if(pre != e){
      dfs(e,p,dfs);
      Z[p] += Z[e];
    }
  };
  dfs(0,-1,dfs);

  i64 ans = 0;
  rep(i,Q){
    int p; i64 x; cin >> p >> x; p--;
    ans += x * Z[p];
    cout << ans << "\n";
  }
  return 0;
}




struct ios_do_not_sync{
  ios_do_not_sync(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
  }
} ios_do_not_sync_instance;




0