結果

問題 No.1637 Easy Tree Query
ユーザー atjh16atjh16
提出日時 2021-09-09 21:42:31
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 529 bytes
コンパイル時間 1,648 ms
コンパイル使用メモリ 170,368 KB
実行使用メモリ 9,800 KB
最終ジャッジ日時 2024-06-10 02:07:36
合計ジャッジ時間 9,580 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,816 KB
testcase_01 AC 3 ms
6,940 KB
testcase_02 AC 271 ms
9,800 KB
testcase_03 WA -
testcase_04 AC 60 ms
7,936 KB
testcase_05 AC 217 ms
7,424 KB
testcase_06 AC 144 ms
6,944 KB
testcase_07 AC 79 ms
6,940 KB
testcase_08 AC 48 ms
7,396 KB
testcase_09 AC 167 ms
8,904 KB
testcase_10 AC 102 ms
6,940 KB
testcase_11 AC 240 ms
9,156 KB
testcase_12 AC 237 ms
8,448 KB
testcase_13 AC 39 ms
6,944 KB
testcase_14 AC 104 ms
9,152 KB
testcase_15 AC 213 ms
9,416 KB
testcase_16 AC 156 ms
9,728 KB
testcase_17 AC 66 ms
6,940 KB
testcase_18 AC 202 ms
7,360 KB
testcase_19 AC 195 ms
8,008 KB
testcase_20 AC 246 ms
8,320 KB
testcase_21 AC 120 ms
8,008 KB
testcase_22 AC 248 ms
9,728 KB
testcase_23 AC 62 ms
7,488 KB
testcase_24 AC 94 ms
8,256 KB
testcase_25 AC 218 ms
7,168 KB
testcase_26 AC 252 ms
8,524 KB
testcase_27 AC 282 ms
9,668 KB
testcase_28 AC 164 ms
7,024 KB
testcase_29 AC 195 ms
8,192 KB
testcase_30 AC 57 ms
8,192 KB
testcase_31 AC 184 ms
6,944 KB
testcase_32 AC 98 ms
7,240 KB
testcase_33 AC 210 ms
6,940 KB
testcase_34 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int n, q, a, b, p;
long long x, m = 0;
vector<int> e[100001];
long long r[100001];

int dfs(int f, int k) {
	if (e[k].size() == 1)
		return r[k] = 1;

	int t = 0;

	for (int j : e[k]) {
		if (j != f)
			t += dfs(k, j);
	}

	return r[k] = t + 1;
}

int main()
{
	cin >> n >> q;

	for (int i = 0; i < n - 1; i++) {
		cin >> a >> b;

		e[a].push_back(b);
		e[b].push_back(a);
	}

	dfs(-1, 1);

	for (int i = 0; i < q; i++) {
		cin >> p >> x;
		m += x * r[p];
		cout << m << endl;
	}	
}
0