結果

問題 No.1637 Easy Tree Query
ユーザー 沙耶花沙耶花
提出日時 2021-08-06 21:50:46
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 243 ms / 2,000 ms
コード長 705 bytes
コンパイル時間 4,623 ms
コンパイル使用メモリ 264,288 KB
実行使用メモリ 17,408 KB
最終ジャッジ日時 2024-09-17 03:49:58
合計ジャッジ時間 10,425 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 243 ms
9,600 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 56 ms
6,656 KB
testcase_05 AC 197 ms
5,632 KB
testcase_06 AC 127 ms
5,376 KB
testcase_07 AC 69 ms
5,376 KB
testcase_08 AC 41 ms
5,888 KB
testcase_09 AC 145 ms
7,936 KB
testcase_10 AC 85 ms
5,376 KB
testcase_11 AC 202 ms
8,704 KB
testcase_12 AC 205 ms
7,424 KB
testcase_13 AC 33 ms
5,376 KB
testcase_14 AC 90 ms
8,192 KB
testcase_15 AC 190 ms
8,832 KB
testcase_16 AC 139 ms
9,472 KB
testcase_17 AC 58 ms
5,376 KB
testcase_18 AC 188 ms
5,504 KB
testcase_19 AC 181 ms
6,272 KB
testcase_20 AC 219 ms
7,296 KB
testcase_21 AC 109 ms
6,656 KB
testcase_22 AC 218 ms
9,472 KB
testcase_23 AC 54 ms
5,376 KB
testcase_24 AC 81 ms
6,656 KB
testcase_25 AC 201 ms
5,504 KB
testcase_26 AC 232 ms
7,552 KB
testcase_27 AC 243 ms
9,344 KB
testcase_28 AC 138 ms
5,376 KB
testcase_29 AC 166 ms
7,040 KB
testcase_30 AC 47 ms
6,912 KB
testcase_31 AC 155 ms
5,376 KB
testcase_32 AC 86 ms
5,632 KB
testcase_33 AC 187 ms
5,376 KB
testcase_34 AC 69 ms
17,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <bits/stdc++.h>
#include <atcoder/all>
using namespace atcoder;
using mint = modint998244353;
using namespace std;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf 1000000001

vector<vector<int>> E;
vector<long long> ans;

void dfs(int cur,int p){
	ans[cur] = 1;
	rep(i,E[cur].size()){
		int to = E[cur][i];
		if(to==p)continue;
		dfs(to,cur);
		ans[cur] += ans[to];
	}
}

int main(){
	
	int n,q;
	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);
	}
	ans.resize(n,0);
	dfs(0,-1);
	long long A = 0;
	rep(_,q){
		long long p,x;
		cin>>p>>x;
		p--;
		A += x * ans[p];
		cout<<A<<endl;
	}
	
	return 0;
}
0