結果

問題 No.1488 Max Score of the Tree
ユーザー ks2mks2m
提出日時 2021-04-23 22:02:18
言語 Java21
(openjdk 21)
結果
AC  
実行時間 348 ms / 2,000 ms
コード長 1,500 bytes
コンパイル時間 2,565 ms
コンパイル使用メモリ 78,032 KB
実行使用メモリ 121,252 KB
最終ジャッジ日時 2024-07-04 08:02:10
合計ジャッジ時間 10,725 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 331 ms
117,528 KB
testcase_01 AC 308 ms
114,500 KB
testcase_02 AC 348 ms
117,956 KB
testcase_03 AC 340 ms
121,252 KB
testcase_04 AC 341 ms
121,124 KB
testcase_05 AC 140 ms
41,736 KB
testcase_06 AC 236 ms
64,180 KB
testcase_07 AC 281 ms
93,060 KB
testcase_08 AC 209 ms
72,892 KB
testcase_09 AC 255 ms
65,800 KB
testcase_10 AC 269 ms
96,032 KB
testcase_11 AC 300 ms
121,100 KB
testcase_12 AC 116 ms
41,288 KB
testcase_13 AC 218 ms
55,956 KB
testcase_14 AC 227 ms
79,384 KB
testcase_15 AC 192 ms
65,316 KB
testcase_16 AC 164 ms
47,704 KB
testcase_17 AC 171 ms
55,648 KB
testcase_18 AC 245 ms
97,164 KB
testcase_19 AC 252 ms
75,048 KB
testcase_20 AC 211 ms
56,148 KB
testcase_21 AC 186 ms
47,172 KB
testcase_22 AC 233 ms
64,672 KB
testcase_23 AC 103 ms
40,088 KB
testcase_24 AC 111 ms
40,908 KB
testcase_25 AC 115 ms
40,744 KB
testcase_26 AC 203 ms
64,500 KB
testcase_27 AC 143 ms
44,320 KB
testcase_28 AC 186 ms
52,516 KB
testcase_29 AC 204 ms
55,816 KB
testcase_30 AC 322 ms
105,200 KB
testcase_31 AC 317 ms
120,988 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.List;
import java.util.Scanner;

public class Main {
	static List<List<Hen>> list;

	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int k = sc.nextInt();
		list = new ArrayList<>(n);
		for (int i = 0; i < n; i++) {
			list.add(new ArrayList<>());
		}
		Hen[] arr = new Hen[n - 1];
		for (int i = 0; i < n - 1; i++) {
			Hen h = new Hen();
			h.a = sc.nextInt() - 1;
			h.b = sc.nextInt() - 1;
			h.c = sc.nextInt();
			list.get(h.a).add(h);
			list.get(h.b).add(h);
			arr[i] = h;
		}
		sc.close();

		dfs(0, -1);

		long[][] dp = new long[n][k + 1];
		for (int i = 0; i < n - 1; i++) {
			for (int j = 0; j <= k; j++) {
				dp[i + 1][j] = dp[i][j];
			}
			for (int j = 0; j <= k; j++) {
				int j2 = j + arr[i].c;
				if (j2 <= k) {
					dp[i + 1][j2] = Math.max(dp[i + 1][j2], dp[i][j] + arr[i].c * arr[i].d);
				} else {
					break;
				}
			}
		}

		long sum = 0;
		for (int i = 0; i < n - 1; i++) {
			sum += arr[i].c * arr[i].d;
		}

		long max = 0;
		for (int i = 0; i <= k; i++) {
			max = Math.max(max, dp[n - 1][i]);
		}
		System.out.println(sum + max);
	}

	static class Hen {
		int a, b, c, d;
	}

	static int dfs(int x, int p) {
		int ret = 0;
		if (list.get(x).size() == 1) {
			ret = 1;
		}
		for (Hen h : list.get(x)) {
			int nx = h.a;
			if (nx == x) {
				nx = h.b;
			}
			if (nx != p) {
				h.d = dfs(nx, x);
				ret += h.d;
			}
		}
		
		return ret;
	}
}
0