結果

問題 No.1637 Easy Tree Query
ユーザー madokamadoka
提出日時 2021-08-06 21:59:50
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 167 ms / 2,000 ms
コード長 1,018 bytes
コンパイル時間 2,580 ms
コンパイル使用メモリ 101,404 KB
実行使用メモリ 20,608 KB
最終ジャッジ日時 2024-09-17 03:51:40
合計ジャッジ時間 8,335 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 33
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <iostream>
#include <string>
#include <cmath>
#include <bitset>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
#include <complex>
#include <unordered_map>
#include <unordered_set>
#include <random>
#include <cassert>
#include <fstream>
#include <utility>
#include <functional>
#define popcount __builtin_popcount
using namespace std;
typedef long long int ll;
typedef pair<int, int> P;
int n;
vector<ll> g[200020];
ll s[200020];
bool used[200020];
void dfs(ll x){
	used[x]=1;
	for(auto y:g[x]){
		if(used[y]) continue;
		dfs(y);
		s[x]+=s[y];
	}
}
int main()
{
	int q;
	cin>>n>>q;
	for(int i=0; i<n-1; i++){
		int a, b; cin>>a>>b; a--; b--;
		g[a].push_back(b);
		g[b].push_back(a);
	}
	ll sum=0;
	for(int i=0; i<200020; i++){
		s[i]++;
	}
	dfs(0);
	ll ans[200020];
	for(int i=0; i<q; i++){
		int p, x; cin>>p>>x;
		p--;
		sum+=s[p]*x;
		ans[i]=sum;
	}
	for(int i=0; i<q; i++){
		cout<<ans[i]<<"\n";
	}
	return 0;
}
0