結果

問題 No.1637 Easy Tree Query
ユーザー atjh16atjh16
提出日時 2021-09-09 21:57:12
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 289 ms / 2,000 ms
コード長 479 bytes
コンパイル時間 1,810 ms
コンパイル使用メモリ 169,988 KB
実行使用メモリ 13,312 KB
最終ジャッジ日時 2024-12-31 09:44:13
合計ジャッジ時間 9,881 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,816 KB
testcase_01 AC 4 ms
6,820 KB
testcase_02 AC 264 ms
9,668 KB
testcase_03 AC 3 ms
6,820 KB
testcase_04 AC 64 ms
7,808 KB
testcase_05 AC 224 ms
7,296 KB
testcase_06 AC 142 ms
6,932 KB
testcase_07 AC 81 ms
6,816 KB
testcase_08 AC 53 ms
7,424 KB
testcase_09 AC 169 ms
8,960 KB
testcase_10 AC 102 ms
6,820 KB
testcase_11 AC 233 ms
9,216 KB
testcase_12 AC 233 ms
8,448 KB
testcase_13 AC 38 ms
6,820 KB
testcase_14 AC 108 ms
8,960 KB
testcase_15 AC 218 ms
9,344 KB
testcase_16 AC 162 ms
9,672 KB
testcase_17 AC 66 ms
6,848 KB
testcase_18 AC 206 ms
7,424 KB
testcase_19 AC 201 ms
7,544 KB
testcase_20 AC 257 ms
8,448 KB
testcase_21 AC 122 ms
8,260 KB
testcase_22 AC 256 ms
9,796 KB
testcase_23 AC 65 ms
6,912 KB
testcase_24 AC 98 ms
7,936 KB
testcase_25 AC 227 ms
7,168 KB
testcase_26 AC 253 ms
8,576 KB
testcase_27 AC 289 ms
9,672 KB
testcase_28 AC 165 ms
7,040 KB
testcase_29 AC 194 ms
8,064 KB
testcase_30 AC 59 ms
8,320 KB
testcase_31 AC 178 ms
6,820 KB
testcase_32 AC 98 ms
7,168 KB
testcase_33 AC 217 ms
6,820 KB
testcase_34 AC 74 ms
13,312 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