結果

問題 No.1637 Easy Tree Query
ユーザー madoka
提出日時 2021-08-06 21:54:33
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 961 bytes
コンパイル時間 1,487 ms
コンパイル使用メモリ 104,056 KB
実行使用メモリ 18,328 KB
最終ジャッジ日時 2024-09-17 01:51:46
合計ジャッジ時間 8,884 ms
ジャッジサーバーID
(参考情報)
judge6 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 2 WA * 31
権限があれば一括ダウンロードができます

ソースコード

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<int> g[200020];
int s[200020];
bool used[200020];
void dfs(int 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);
	
	for(int i=0; i<q; i++){
		int p, x; cin>>p>>x;
		p--;
		sum+=s[p]*x;
		cout<<sum<<"\n";
	}
	return 0;
}
0