結果

問題 No.1637 Easy Tree Query
ユーザー neckrawarmerneckrawarmer
提出日時 2021-10-17 20:00:52
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 54 ms / 2,000 ms
コード長 973 bytes
コンパイル時間 3,767 ms
コンパイル使用メモリ 264,332 KB
実行使用メモリ 15,744 KB
最終ジャッジ日時 2024-09-17 19:44:59
合計ジャッジ時間 7,190 ms
ジャッジサーバーID
(参考情報)
judge6 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 50 ms
10,240 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 20 ms
7,296 KB
testcase_05 AC 34 ms
6,272 KB
testcase_06 AC 24 ms
5,760 KB
testcase_07 AC 11 ms
5,376 KB
testcase_08 AC 16 ms
6,528 KB
testcase_09 AC 39 ms
8,576 KB
testcase_10 AC 18 ms
5,504 KB
testcase_11 AC 50 ms
9,088 KB
testcase_12 AC 48 ms
8,064 KB
testcase_13 AC 11 ms
5,376 KB
testcase_14 AC 30 ms
8,832 KB
testcase_15 AC 45 ms
9,472 KB
testcase_16 AC 40 ms
9,856 KB
testcase_17 AC 14 ms
5,504 KB
testcase_18 AC 34 ms
6,400 KB
testcase_19 AC 35 ms
6,912 KB
testcase_20 AC 45 ms
7,808 KB
testcase_21 AC 27 ms
7,168 KB
testcase_22 AC 53 ms
10,112 KB
testcase_23 AC 14 ms
5,760 KB
testcase_24 AC 25 ms
7,424 KB
testcase_25 AC 34 ms
6,272 KB
testcase_26 AC 44 ms
8,192 KB
testcase_27 AC 54 ms
9,856 KB
testcase_28 AC 26 ms
6,016 KB
testcase_29 AC 37 ms
7,680 KB
testcase_30 AC 21 ms
7,680 KB
testcase_31 AC 22 ms
5,376 KB
testcase_32 AC 22 ms
6,144 KB
testcase_33 AC 32 ms
6,940 KB
testcase_34 AC 31 ms
15,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#if __has_include(<atcoder/all>)
#include <atcoder/all>
using namespace atcoder;
using mint = modint998244353;
#endif
using ll = long long;
using ld = long double;
const ll INF = 1ll<<60;
const ld EPS = 1.0/1e9;
#define endl "\n"
#define rep(i,a,b) for(int i=a;i<b;i++)
#define rrep(i,a,b) for(int i=a;i>=b;i--)
#define fore(i,a) for(auto &i:a)
#define all(x) (x).begin(),(x).end()
#define del(x) sort(all(x)); x.erase(unique(all(x)),x.end());
vector<ll>x(101010,1);
void dfs(vector<vector<ll>>& G,int s,int p){
  fore(c,G[s]) if(c!=p){
    dfs(G,c,s);
    x[s]+=x[c];
  }
  return;
}

int main(){
  ios_base::sync_with_stdio(0);
  cin.tie(0);
  ll n,q; cin >> n >> q;
  vector<vector<ll>>G(n);
  rep(i,0,n-1){
    ll a,b; cin >> a >> b;
    a--; b--;
    G[a].push_back(b);
    G[b].push_back(a);
  }
  dfs(G,0,-1);
  ll ans=0;
  rep(i,0,q){
    ll p,s; cin >> p >> s;
    p--; 
    ans+=x[p]*s;
    cout << ans << endl;
  }
}
0