結果

問題 No.1637 Easy Tree Query
ユーザー beetbeet
提出日時 2021-08-06 21:23:01
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 82 ms / 2,000 ms
コード長 1,343 bytes
コンパイル時間 3,150 ms
コンパイル使用メモリ 251,180 KB
実行使用メモリ 13,056 KB
最終ジャッジ日時 2024-09-17 03:20:01
合計ジャッジ時間 7,154 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 33
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

using Int = long long;
const char newl = '\n';

template<typename T1,typename T2> inline void chmin(T1 &a,T2 b){if(a>b) a=b;}
template<typename T1,typename T2> inline void chmax(T1 &a,T2 b){if(a<b) a=b;}
template<typename T> void drop(const T &x){cout<<x<<endl;exit(0);}
template<typename T=Int>
vector<T> read(size_t n){
  vector<T> ts(n);
  for(size_t i=0;i<n;i++) cin>>ts[i];
  return ts;
}


class EulerTourForVertex{
private:
  vector<Int> ls,rs;
  Int pos;

  void dfs(Int v,Int p){
    ls[v]=pos++;
    for(Int u:G[v])
      if(u!=p) dfs(u,v);
    rs[v]=pos;
  }

public:
  vector< vector<Int> > G;
  EulerTourForVertex(Int n):ls(n),rs(n),G(n){}

  void add_edge(Int u,Int v){
    G[u].emplace_back(v);
    G[v].emplace_back(u);
  }

  void build(Int r=0){
    pos=0;
    dfs(r,-1);
  }

  Int idx(Int v){return ls[v];}

  template<typename F>
  void exec(Int v,F f){
    f(ls[v],rs[v]);
  }
};

//INSERT ABOVE HERE
signed main(){
  cin.tie(0);
  ios::sync_with_stdio(0);

  Int n,q;
  cin>>n>>q;
  EulerTourForVertex G(n);
  for(Int i=1;i<n;i++){
    Int a,b;
    cin>>a>>b;
    a--;b--;
    G.add_edge(a,b);
  }
  G.build(0);

  Int ans=0;
  for(Int i=0;i<q;i++){
    Int p,x;
    cin>>p>>x;
    p--;
    G.exec(p,[&](Int l,Int r){ans+=(r-l)*x;});
    cout<<ans<<newl;
  }
  return 0;
}
0