結果

問題 No.417 チューリップバブル
ユーザー tentententen
提出日時 2021-01-25 19:30:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 492 ms / 2,000 ms
コード長 2,077 bytes
コンパイル時間 2,683 ms
コンパイル使用メモリ 87,564 KB
実行使用メモリ 63,356 KB
最終ジャッジ日時 2024-06-22 14:11:15
合計ジャッジ時間 13,238 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
54,112 KB
testcase_01 AC 135 ms
54,096 KB
testcase_02 AC 137 ms
53,940 KB
testcase_03 AC 136 ms
54,036 KB
testcase_04 AC 137 ms
53,988 KB
testcase_05 AC 132 ms
54,136 KB
testcase_06 AC 135 ms
54,208 KB
testcase_07 AC 135 ms
54,240 KB
testcase_08 AC 145 ms
54,224 KB
testcase_09 AC 145 ms
54,160 KB
testcase_10 AC 163 ms
54,516 KB
testcase_11 AC 176 ms
54,344 KB
testcase_12 AC 179 ms
54,304 KB
testcase_13 AC 171 ms
54,228 KB
testcase_14 AC 186 ms
54,204 KB
testcase_15 AC 184 ms
54,084 KB
testcase_16 AC 172 ms
54,080 KB
testcase_17 AC 253 ms
57,584 KB
testcase_18 AC 259 ms
57,032 KB
testcase_19 AC 261 ms
57,640 KB
testcase_20 AC 286 ms
58,168 KB
testcase_21 AC 270 ms
58,468 KB
testcase_22 AC 311 ms
58,796 KB
testcase_23 AC 260 ms
56,888 KB
testcase_24 AC 177 ms
54,168 KB
testcase_25 AC 238 ms
57,712 KB
testcase_26 AC 215 ms
54,764 KB
testcase_27 AC 233 ms
56,740 KB
testcase_28 AC 245 ms
56,828 KB
testcase_29 AC 273 ms
57,700 KB
testcase_30 AC 263 ms
57,040 KB
testcase_31 AC 281 ms
57,940 KB
testcase_32 AC 134 ms
53,972 KB
testcase_33 AC 135 ms
53,960 KB
testcase_34 AC 151 ms
54,276 KB
testcase_35 AC 438 ms
62,828 KB
testcase_36 AC 492 ms
63,356 KB
testcase_37 AC 443 ms
61,476 KB
testcase_38 AC 452 ms
62,028 KB
testcase_39 AC 350 ms
59,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static ArrayList<HashMap<Integer, Integer>> graph = new ArrayList<>();
    static int[] values;
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int m = sc.nextInt();
        values = new int[n];
        for (int i = 0; i < n; i++) {
            values[i] = sc.nextInt();
            graph.add(new HashMap<>());
        }
        for (int i = 0; i < n - 1; i++) {
            int a = sc.nextInt();
            int b = sc.nextInt();
            int c = sc.nextInt();
            graph.get(a).put(b, c);
            graph.get(b).put(a, c);
        }
        System.out.println(dfw(0, 0, m).lastEntry().getValue());
    }
    
    static TreeMap<Integer, Integer> dfw(int idx, int parent, int time) {
        graph.get(idx).remove(parent);
        TreeMap<Integer, Integer> tmp = new TreeMap<>();
        if (time < 0) {
            return tmp;
        }
        tmp.put(0, values[idx]);
        for (int x : graph.get(idx).keySet()) {
            int cost = graph.get(idx).get(x) * 2;
            TreeMap<Integer, Integer> next = dfw(x, idx, time - cost);
            Integer key = Integer.MAX_VALUE;
            while ((key = tmp.lowerKey(key)) != null) {
                for (int y : next.keySet()) {
                    if (cost + y + key > time) {
                        break;
                    }
                    int value = tmp.get(key) + next.get(y);
                    if (tmp.floorEntry(cost + y + key).getValue() < value) {
                        tmp.put(cost + y + key, value);
                        Integer mask = cost + y + key;
                        while ((mask = tmp.higherKey(mask)) != null) {
                            if (tmp.get(mask) <= value) {
                                tmp.remove(mask);
                            } else {
                                break;
                            }
                        }
                    }
                }
            }
        }
        return tmp;
    }
}
0