結果

問題 No.1637 Easy Tree Query
ユーザー ks2mks2m
提出日時 2021-08-06 21:25:28
言語 Java21
(openjdk 21)
結果
AC  
実行時間 734 ms / 2,000 ms
コード長 1,326 bytes
コンパイル時間 2,769 ms
コンパイル使用メモリ 78,120 KB
実行使用メモリ 71,984 KB
最終ジャッジ日時 2024-09-17 03:31:22
合計ジャッジ時間 21,073 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
36,964 KB
testcase_01 AC 53 ms
37,100 KB
testcase_02 AC 705 ms
63,676 KB
testcase_03 AC 52 ms
37,032 KB
testcase_04 AC 366 ms
52,184 KB
testcase_05 AC 517 ms
52,268 KB
testcase_06 AC 398 ms
50,284 KB
testcase_07 AC 281 ms
46,292 KB
testcase_08 AC 336 ms
51,084 KB
testcase_09 AC 647 ms
59,008 KB
testcase_10 AC 345 ms
49,560 KB
testcase_11 AC 734 ms
60,464 KB
testcase_12 AC 641 ms
55,768 KB
testcase_13 AC 266 ms
48,176 KB
testcase_14 AC 569 ms
56,320 KB
testcase_15 AC 679 ms
60,296 KB
testcase_16 AC 656 ms
62,296 KB
testcase_17 AC 305 ms
49,444 KB
testcase_18 AC 517 ms
52,040 KB
testcase_19 AC 499 ms
53,176 KB
testcase_20 AC 623 ms
55,680 KB
testcase_21 AC 417 ms
53,056 KB
testcase_22 AC 701 ms
62,904 KB
testcase_23 AC 308 ms
49,872 KB
testcase_24 AC 393 ms
52,960 KB
testcase_25 AC 526 ms
51,824 KB
testcase_26 AC 679 ms
56,764 KB
testcase_27 AC 719 ms
62,372 KB
testcase_28 AC 429 ms
51,084 KB
testcase_29 AC 550 ms
54,460 KB
testcase_30 AC 350 ms
53,304 KB
testcase_31 AC 398 ms
47,048 KB
testcase_32 AC 355 ms
51,192 KB
testcase_33 AC 472 ms
50,656 KB
testcase_34 AC 445 ms
71,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.util.ArrayList;
import java.util.List;

public class Main {
	static List<List<Integer>> list;
	static int[] dp;

	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String[] sa = br.readLine().split(" ");
		int n = Integer.parseInt(sa[0]);
		int q = Integer.parseInt(sa[1]);
		list = new ArrayList<>(n);
		for (int i = 0; i < n; i++) {
			list.add(new ArrayList<>());
		}
		for (int i = 0; i < n - 1; i++) {
			sa = br.readLine().split(" ");
			int a = Integer.parseInt(sa[0]) - 1;
			int b = Integer.parseInt(sa[1]) - 1;
			list.get(a).add(b);
			list.get(b).add(a);
		}
		int[] p = new int[q];
		int[] x = new int[q];
		for (int i = 0; i < q; i++) {
			sa = br.readLine().split(" ");
			p[i] = Integer.parseInt(sa[0]) - 1;
			x[i] = Integer.parseInt(sa[1]);
		}
		br.close();

		dp = new int[n];
		dfs(0, -1);
		long ans = 0;
		PrintWriter pw = new PrintWriter(System.out);
		for (int i = 0; i < q; i++) {
			ans += (long) dp[p[i]] * x[i];
			pw.println(ans);
		}
		pw.flush();
	}

	static int dfs(int x, int p) {
		int ret = 1;
		for (int c : list.get(x)) {
			if (c != p) {
				ret += dfs(c, x);
			}
		}
		return dp[x] = ret;
	}
}
0