結果

問題 No.417 チューリップバブル
ユーザー tentententen
提出日時 2023-04-05 18:22:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 382 ms / 2,000 ms
コード長 3,392 bytes
コンパイル時間 3,235 ms
コンパイル使用メモリ 87,608 KB
実行使用メモリ 61,480 KB
最終ジャッジ日時 2024-10-02 02:24:19
合計ジャッジ時間 9,780 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
50,136 KB
testcase_01 AC 58 ms
50,232 KB
testcase_02 AC 60 ms
50,540 KB
testcase_03 AC 59 ms
50,324 KB
testcase_04 AC 61 ms
50,340 KB
testcase_05 AC 56 ms
50,416 KB
testcase_06 AC 57 ms
50,252 KB
testcase_07 AC 59 ms
50,452 KB
testcase_08 AC 58 ms
50,440 KB
testcase_09 AC 59 ms
50,352 KB
testcase_10 AC 64 ms
50,516 KB
testcase_11 AC 93 ms
51,408 KB
testcase_12 AC 95 ms
51,304 KB
testcase_13 AC 67 ms
50,380 KB
testcase_14 AC 100 ms
51,988 KB
testcase_15 AC 94 ms
51,820 KB
testcase_16 AC 97 ms
52,120 KB
testcase_17 AC 145 ms
55,824 KB
testcase_18 AC 158 ms
54,880 KB
testcase_19 AC 164 ms
55,700 KB
testcase_20 AC 184 ms
56,196 KB
testcase_21 AC 180 ms
55,916 KB
testcase_22 AC 202 ms
56,288 KB
testcase_23 AC 159 ms
55,120 KB
testcase_24 AC 60 ms
50,468 KB
testcase_25 AC 138 ms
53,112 KB
testcase_26 AC 119 ms
52,656 KB
testcase_27 AC 140 ms
53,036 KB
testcase_28 AC 151 ms
55,068 KB
testcase_29 AC 160 ms
55,088 KB
testcase_30 AC 159 ms
55,208 KB
testcase_31 AC 180 ms
55,176 KB
testcase_32 AC 57 ms
50,340 KB
testcase_33 AC 56 ms
50,236 KB
testcase_34 AC 61 ms
50,436 KB
testcase_35 AC 322 ms
61,060 KB
testcase_36 AC 382 ms
61,480 KB
testcase_37 AC 326 ms
59,972 KB
testcase_38 AC 332 ms
60,620 KB
testcase_39 AC 273 ms
58,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static ArrayList<HashMap<Integer, Integer>> graph = new ArrayList<>();
    static int[] values;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        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);
        }
        TreeMap<Integer, Integer> ans = getMap(0, 0, m);
        System.out.println(ans.lastEntry().getValue());
    }
    
    static TreeMap<Integer, Integer> getMap(int idx, int p, int v) {
        if (v < 0) {
            return new TreeMap<>();
        }
        TreeMap<Integer, Integer> ans = new TreeMap<>();
        ans.put(0, values[idx]);
        for (int x : graph.get(idx).keySet()) {
            if (p == x) {
                continue;
            }
            int cost = graph.get(idx).get(x) * 2;
            TreeMap<Integer, Integer> tmp = getMap(x, idx, v - cost);
            Integer key = Integer.MAX_VALUE;
            while ((key = ans.lowerKey(key)) != null) {
                for (int y : tmp.keySet()) {
                    if (y + cost + key > v) {
                        break;
                    }
                    Integer next = y + cost + key;
                    if (ans.floorEntry(next).getValue() >= ans.get(key) + tmp.get(y)) {
                        continue;
                    }
                    int value = ans.get(key) + tmp.get(y);
                    ans.put(next, value);
                    while ((next = ans.higherKey(next)) != null) {
                        if (ans.get(next) > value) {
                            break;
                        }
                        ans.remove(next);
                    }
                }
            }
        }
        return ans;
    }
    
}
class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0