結果

問題 No.1037 exhausted
ユーザー htensaihtensai
提出日時 2020-04-30 08:46:47
言語 Java
(openjdk 23)
結果
AC  
実行時間 1,998 ms / 2,000 ms
コード長 2,209 bytes
コンパイル時間 2,515 ms
コンパイル使用メモリ 79,580 KB
実行使用メモリ 292,592 KB
最終ジャッジ日時 2024-12-14 12:30:09
合計ジャッジ時間 20,985 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
53,036 KB
testcase_01 AC 133 ms
53,988 KB
testcase_02 AC 135 ms
54,096 KB
testcase_03 AC 135 ms
53,956 KB
testcase_04 AC 137 ms
54,236 KB
testcase_05 AC 138 ms
54,076 KB
testcase_06 AC 138 ms
54,396 KB
testcase_07 AC 139 ms
54,092 KB
testcase_08 AC 123 ms
53,140 KB
testcase_09 AC 139 ms
54,004 KB
testcase_10 AC 138 ms
54,236 KB
testcase_11 AC 142 ms
54,172 KB
testcase_12 AC 1,754 ms
222,100 KB
testcase_13 AC 1,755 ms
222,620 KB
testcase_14 AC 1,880 ms
271,188 KB
testcase_15 AC 1,845 ms
222,736 KB
testcase_16 AC 1,804 ms
253,824 KB
testcase_17 AC 1,795 ms
242,920 KB
testcase_18 AC 1,998 ms
292,592 KB
testcase_19 AC 1,972 ms
288,276 KB
testcase_20 AC 249 ms
57,624 KB
testcase_21 AC 246 ms
57,824 KB
testcase_22 AC 243 ms
57,800 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