結果

問題 No.417 チューリップバブル
ユーザー htensaihtensai
提出日時 2020-01-28 16:44:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 710 ms / 2,000 ms
コード長 2,424 bytes
コンパイル時間 2,274 ms
コンパイル使用メモリ 79,268 KB
実行使用メモリ 58,952 KB
最終ジャッジ日時 2024-09-15 13:43:20
合計ジャッジ時間 16,510 ms
ジャッジサーバーID
(参考情報)
judge6 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
50,424 KB
testcase_01 AC 56 ms
50,208 KB
testcase_02 AC 56 ms
50,404 KB
testcase_03 AC 56 ms
50,140 KB
testcase_04 AC 55 ms
50,260 KB
testcase_05 AC 56 ms
50,360 KB
testcase_06 AC 58 ms
50,516 KB
testcase_07 AC 59 ms
49,848 KB
testcase_08 AC 137 ms
52,848 KB
testcase_09 AC 259 ms
56,304 KB
testcase_10 AC 262 ms
55,956 KB
testcase_11 AC 373 ms
56,712 KB
testcase_12 AC 314 ms
56,352 KB
testcase_13 AC 276 ms
56,252 KB
testcase_14 AC 402 ms
56,596 KB
testcase_15 AC 191 ms
54,960 KB
testcase_16 AC 175 ms
55,212 KB
testcase_17 AC 343 ms
56,624 KB
testcase_18 AC 310 ms
56,372 KB
testcase_19 AC 301 ms
56,316 KB
testcase_20 AC 492 ms
56,488 KB
testcase_21 AC 511 ms
56,844 KB
testcase_22 AC 493 ms
56,696 KB
testcase_23 AC 473 ms
56,716 KB
testcase_24 AC 58 ms
50,040 KB
testcase_25 AC 503 ms
56,656 KB
testcase_26 AC 251 ms
56,176 KB
testcase_27 AC 357 ms
56,220 KB
testcase_28 AC 487 ms
56,880 KB
testcase_29 AC 511 ms
56,800 KB
testcase_30 AC 475 ms
56,612 KB
testcase_31 AC 487 ms
56,716 KB
testcase_32 AC 55 ms
50,292 KB
testcase_33 AC 231 ms
55,620 KB
testcase_34 AC 299 ms
56,124 KB
testcase_35 AC 710 ms
58,596 KB
testcase_36 AC 665 ms
58,952 KB
testcase_37 AC 691 ms
58,392 KB
testcase_38 AC 635 ms
58,360 KB
testcase_39 AC 637 ms
58,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;

public class Main {
    static int m;
    public static void main(String[] args) throws Exception {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        String[] first = br.readLine().split(" ", 2);
        int n = Integer.parseInt(first[0]);
        m = Integer.parseInt(first[1]) + 1;
        Node[] tree = new Node[n];
        for (int i = 0; i < n; i++) {
            tree[i] = new Node(i, Integer.parseInt(br.readLine()));
        }
        for (int i = 0; i < n - 1; i++) {
            String[] line = br.readLine().split(" ", 3);
            int a = Integer.parseInt(line[0]);
            int b = Integer.parseInt(line[1]);
            int c = Integer.parseInt(line[2]);
            tree[a].add(tree[b], c);
            tree[b].add(tree[a], c);
        }
        int[] arr = tree[0].getArray(null);
        Arrays.sort(arr);
        System.out.println(arr[m - 1]);
  }
  
  static void printArrray(int[] arr) {
      StringBuilder sb = new StringBuilder();
      for (int x : arr) {
          sb.append(x).append(" ");
      }
      System.out.println(sb);
  }
   
   static class Node {
       int id;
       HashMap<Node, Integer> paths = new HashMap<>();
       int[] costs = new int[m];
       
       public Node(int id, int cost) {
           this.id = id;
           costs[0] = cost;
       }
       
       public void add(Node n, int cost) {
           paths.put(n, cost);
       }
       
       public int[] getArray(Node parent) {
           if (parent != null) {
                paths.remove(parent);
           }
           for (Map.Entry<Node, Integer> p : paths.entrySet()) {
               int[] tmp = new int[m];
               int[] child = p.getKey().getArray(this);
               int added = p.getValue() * 2;
               for (int i = 0; i < m - added; i++) {
                   for (int j = 0; j < m - i - added; j++) {
                       tmp[i + j + added] = Math.max(tmp[i + j + added] , costs[i] + child[j]);
                   }
               }
               for (int i = 0; i < m; i++) {
                   costs[i] = Math.max(costs[i], tmp[i]);
               }
           }
           return costs;
       }
       
       public int hashCode() {
           return id;
       }
       
       public boolean equals(Object o) {
           Node n = (Node) o;
           return id == n.id;
       }
   }
}
0