結果

問題 No.1637 Easy Tree Query
ユーザー atjh16atjh16
提出日時 2021-09-09 21:57:12
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 247 ms / 2,000 ms
コード長 479 bytes
コンパイル時間 1,581 ms
コンパイル使用メモリ 170,828 KB
実行使用メモリ 13,440 KB
最終ジャッジ日時 2024-06-10 02:26:56
合計ジャッジ時間 8,561 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 4 ms
6,940 KB
testcase_02 AC 247 ms
9,668 KB
testcase_03 AC 3 ms
6,940 KB
testcase_04 AC 55 ms
7,936 KB
testcase_05 AC 196 ms
7,424 KB
testcase_06 AC 134 ms
6,940 KB
testcase_07 AC 73 ms
6,940 KB
testcase_08 AC 42 ms
7,424 KB
testcase_09 AC 143 ms
9,028 KB
testcase_10 AC 88 ms
6,948 KB
testcase_11 AC 200 ms
9,160 KB
testcase_12 AC 214 ms
8,448 KB
testcase_13 AC 33 ms
7,104 KB
testcase_14 AC 86 ms
9,088 KB
testcase_15 AC 188 ms
9,344 KB
testcase_16 AC 140 ms
9,668 KB
testcase_17 AC 61 ms
6,940 KB
testcase_18 AC 186 ms
7,296 KB
testcase_19 AC 186 ms
7,680 KB
testcase_20 AC 234 ms
8,512 KB
testcase_21 AC 106 ms
7,936 KB
testcase_22 AC 221 ms
9,824 KB
testcase_23 AC 57 ms
7,232 KB
testcase_24 AC 85 ms
7,936 KB
testcase_25 AC 204 ms
7,140 KB
testcase_26 AC 222 ms
8,448 KB
testcase_27 AC 244 ms
9,484 KB
testcase_28 AC 144 ms
7,112 KB
testcase_29 AC 178 ms
8,192 KB
testcase_30 AC 46 ms
8,192 KB
testcase_31 AC 175 ms
6,944 KB
testcase_32 AC 89 ms
7,620 KB
testcase_33 AC 186 ms
6,940 KB
testcase_34 AC 65 ms
13,440 KB
権限があれば一括ダウンロードができます

ソースコード

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 ct(int f, int k) {
	int t = 1;

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

	return r[k] = t;
}

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);
	}

	ct(-1, 1);

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