結果
問題 | No.1488 Max Score of the Tree |
ユーザー | tenten |
提出日時 | 2021-05-07 09:05:31 |
言語 | Java (openjdk 23) |
結果 |
AC
|
実行時間 | 299 ms / 2,000 ms |
コード長 | 2,481 bytes |
コンパイル時間 | 2,415 ms |
コンパイル使用メモリ | 78,620 KB |
実行使用メモリ | 90,068 KB |
最終ジャッジ日時 | 2024-09-14 22:12:57 |
合計ジャッジ時間 | 7,603 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge6 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 172 ms
87,544 KB |
testcase_01 | AC | 218 ms
85,444 KB |
testcase_02 | AC | 299 ms
87,592 KB |
testcase_03 | AC | 233 ms
89,812 KB |
testcase_04 | AC | 280 ms
89,892 KB |
testcase_05 | AC | 58 ms
50,408 KB |
testcase_06 | AC | 67 ms
58,976 KB |
testcase_07 | AC | 120 ms
74,724 KB |
testcase_08 | AC | 74 ms
62,520 KB |
testcase_09 | AC | 102 ms
61,288 KB |
testcase_10 | AC | 101 ms
74,924 KB |
testcase_11 | AC | 271 ms
90,068 KB |
testcase_12 | AC | 55 ms
50,288 KB |
testcase_13 | AC | 96 ms
57,052 KB |
testcase_14 | AC | 114 ms
76,172 KB |
testcase_15 | AC | 94 ms
63,300 KB |
testcase_16 | AC | 57 ms
51,968 KB |
testcase_17 | AC | 86 ms
55,896 KB |
testcase_18 | AC | 181 ms
82,868 KB |
testcase_19 | AC | 91 ms
63,044 KB |
testcase_20 | AC | 89 ms
56,464 KB |
testcase_21 | AC | 57 ms
52,448 KB |
testcase_22 | AC | 100 ms
64,280 KB |
testcase_23 | AC | 55 ms
49,936 KB |
testcase_24 | AC | 55 ms
50,380 KB |
testcase_25 | AC | 55 ms
50,388 KB |
testcase_26 | AC | 61 ms
59,396 KB |
testcase_27 | AC | 57 ms
50,360 KB |
testcase_28 | AC | 85 ms
56,280 KB |
testcase_29 | AC | 88 ms
56,436 KB |
testcase_30 | AC | 111 ms
81,504 KB |
testcase_31 | AC | 244 ms
89,892 KB |
ソースコード
import java.io.*; import java.util.*; public class Main { static ArrayList<ArrayList<Path>> graph = new ArrayList<>(); static ArrayList<Path> paths = new ArrayList<>(); static int total = 0; static int[][] dp; public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); int n = sc.nextInt(); int k = sc.nextInt(); for (int i = 0; i < n; i++) { graph.add(new ArrayList<>()); } for (int i = 0; i < n - 1; i++) { int a = sc.nextInt() - 1; int b = sc.nextInt() - 1; int c = sc.nextInt(); graph.get(a).add(new Path(b, c)); graph.get(b).add(new Path(a, c)); } getChildren(0, 0, 0); dp = new int[n - 1][k + 1]; System.out.println(dfw(n - 2, k) + total); } static int dfw(int idx, int cost) { if (cost < 0) { return Integer.MIN_VALUE; } if (idx < 0) { return 0; } if (dp[idx][cost] == 0) { Path p = paths.get(idx); dp[idx][cost] = Math.max(dfw(idx - 1, cost), dfw(idx - 1, cost - p.value) + p.count * p.value); } return dp[idx][cost]; } static int getChildren(int idx, int parent, int value) { int sum = 0; for (Path p : graph.get(idx)) { if (p.idx == parent) { continue; } p.count = getChildren(p.idx, idx, value + p.value); sum += p.count; paths.add(p); } if (sum == 0) { total += value; sum++; } return sum; } static class Path { int idx; int value; int count; public Path(int idx, int value) { this.idx = idx; this.value = value; } } } class Scanner { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(""); public Scanner() throws Exception { } public int nextInt() throws Exception { return Integer.parseInt(next()); } public long nextLong() throws Exception { return Long.parseLong(next()); } public String next() throws Exception { if (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } return st.nextToken(); } }