結果

問題 No.1037 exhausted
ユーザー htensaihtensai
提出日時 2020-04-30 08:46:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,832 ms / 2,000 ms
コード長 2,209 bytes
コンパイル時間 2,776 ms
コンパイル使用メモリ 79,456 KB
実行使用メモリ 295,448 KB
最終ジャッジ日時 2024-05-08 09:34:42
合計ジャッジ時間 19,274 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,620 KB
testcase_01 AC 126 ms
41,292 KB
testcase_02 AC 118 ms
41,640 KB
testcase_03 AC 118 ms
41,564 KB
testcase_04 AC 126 ms
41,244 KB
testcase_05 AC 117 ms
41,484 KB
testcase_06 AC 115 ms
41,584 KB
testcase_07 AC 127 ms
41,728 KB
testcase_08 AC 127 ms
41,508 KB
testcase_09 AC 128 ms
41,360 KB
testcase_10 AC 125 ms
41,488 KB
testcase_11 AC 134 ms
41,700 KB
testcase_12 AC 1,644 ms
212,804 KB
testcase_13 AC 1,601 ms
213,088 KB
testcase_14 AC 1,657 ms
242,688 KB
testcase_15 AC 1,714 ms
223,260 KB
testcase_16 AC 1,652 ms
246,152 KB
testcase_17 AC 1,730 ms
273,536 KB
testcase_18 AC 1,816 ms
295,448 KB
testcase_19 AC 1,832 ms
291,024 KB
testcase_20 AC 221 ms
49,708 KB
testcase_21 AC 221 ms
46,176 KB
testcase_22 AC 229 ms
45,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int v = sc.nextInt();
        int l = sc.nextInt();
        GS[] stations = new GS[n + 2];
        for (int i = 1; i <= n; i++) {
            stations[i] = new GS(sc.nextInt(), sc.nextInt(), sc.nextInt());
        }
        stations[0] = new GS(0, 0, 0);
        stations[n + 1] = new GS(l, 0, 0);
        ArrayList<HashMap<Integer, Long>> dp = new ArrayList<>();
        for (int i = 0; i <= n + 1; i++) {
            dp.add(new HashMap<>());
        }
        dp.get(0).put(v, 0L);
        for (int i = 1; i <= n + 1; i++) {
            int length = stations[i].point - stations[i - 1].point;
            HashMap<Integer, Long> map = dp.get(i);
            for (Map.Entry<Integer, Long> entry : dp.get(i - 1).entrySet()) {
                int gas = entry.getKey() - length;
                if (gas < 0) {
                    continue;
                }
                if (map.containsKey(gas)) {
                    if (map.get(gas) > entry.getValue()) {
                        map.put(gas, entry.getValue());
                    }
                } else {
                    map.put(gas, entry.getValue());
                }
                long cost = entry.getValue() + stations[i].cost;
                gas = Math.min(v, gas + stations[i].gas);
                if (map.containsKey(gas)) {
                    if (map.get(gas) > cost) {
                        map.put(gas, cost);
                    }
                } else {
                    map.put(gas, cost);
                }
            }
        }
        if (dp.get(n + 1).size() == 0) {
            System.out.println(-1);
            return;
        }
        long min = Long.MAX_VALUE;
        for (long x : dp.get(n + 1).values()) {
            min = Math.min(x, min);
        }
        System.out.println(min);
    }
    
    static class GS {
        int point;
        int gas;
        int cost;
        
        public GS(int point, int gas, int cost) {
            this.point = point;
            this.gas = gas;
            this.cost = cost;
        }
    }
}
0