結果

問題 No.1037 exhausted
ユーザー tentententen
提出日時 2021-01-30 12:19:59
言語 Java21
(openjdk 21)
結果
AC  
実行時間 402 ms / 2,000 ms
コード長 2,134 bytes
コンパイル時間 2,274 ms
コンパイル使用メモリ 79,284 KB
実行使用メモリ 48,540 KB
最終ジャッジ日時 2024-06-28 00:27:49
合計ジャッジ時間 8,219 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
40,120 KB
testcase_01 AC 128 ms
41,284 KB
testcase_02 AC 127 ms
41,144 KB
testcase_03 AC 115 ms
40,136 KB
testcase_04 AC 130 ms
41,212 KB
testcase_05 AC 135 ms
41,072 KB
testcase_06 AC 132 ms
41,212 KB
testcase_07 AC 130 ms
41,236 KB
testcase_08 AC 129 ms
41,028 KB
testcase_09 AC 131 ms
41,300 KB
testcase_10 AC 133 ms
40,972 KB
testcase_11 AC 136 ms
41,300 KB
testcase_12 AC 345 ms
48,168 KB
testcase_13 AC 323 ms
47,208 KB
testcase_14 AC 323 ms
47,704 KB
testcase_15 AC 333 ms
46,880 KB
testcase_16 AC 369 ms
48,024 KB
testcase_17 AC 402 ms
48,096 KB
testcase_18 AC 318 ms
48,516 KB
testcase_19 AC 327 ms
48,540 KB
testcase_20 AC 243 ms
45,772 KB
testcase_21 AC 239 ms
45,708 KB
testcase_22 AC 243 ms
45,772 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 volume = sc.nextInt();
        int length = sc.nextInt();
        TreeMap<Integer, Long> base = new TreeMap<>();
        base.put(volume, 0L);
        int prev = 0;
        for (int i = 0; i < n; i++) {
            int x = sc.nextInt();
            int v = sc.nextInt();
            long w = sc.nextInt();
            TreeMap<Integer, Long> next = new TreeMap<>();
            for (int y : base.keySet()) {
                long value = base.get(y);
                int none = y - x + prev;
                if (none >= 0) {
                    Integer key = next.ceilingKey(none);
                    if (key == null || next.get(key) > value) {
                        next.put(none, value);
                        key = none;
                        while ((key = next.lowerKey(key)) != null) {
                            if (next.get(key) >= value) {
                                next.remove(key);
                            } else {
                                break;
                            }
                        }
                    }
                    int full = Math.min(volume, none + v);
                    key = next.ceilingKey(full);
                    if (key == null || next.get(key) > value + w) {
                        next.put(full, value + w);
                        key = full;
                        while ((key = next.lowerKey(key)) != null) {
                            if (next.get(key) >= value + w) {
                                next.remove(key);
                            } else {
                                break;
                            }
                        }
                    }
                }
            }
            prev = x;
            base = next;
        }
        for (int y : base.keySet()) {
            if (y - length + prev >= 0) {
                System.out.println(base.get(y));
                return;
            }
        }
        System.out.println(-1);
    }
}
0