結果

問題 No.1037 exhausted
ユーザー tentententen
提出日時 2021-01-30 12:17:52
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 2,137 bytes
コンパイル時間 2,756 ms
コンパイル使用メモリ 85,100 KB
実行使用メモリ 59,536 KB
最終ジャッジ日時 2024-06-28 00:25:02
合計ジャッジ時間 8,279 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,036 KB
testcase_01 AC 128 ms
41,232 KB
testcase_02 AC 135 ms
41,116 KB
testcase_03 AC 135 ms
41,412 KB
testcase_04 AC 138 ms
40,996 KB
testcase_05 AC 138 ms
41,260 KB
testcase_06 AC 134 ms
41,412 KB
testcase_07 AC 134 ms
41,404 KB
testcase_08 AC 132 ms
41,308 KB
testcase_09 WA -
testcase_10 AC 131 ms
41,296 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 318 ms
47,396 KB
testcase_14 WA -
testcase_15 AC 339 ms
48,112 KB
testcase_16 AC 354 ms
48,252 KB
testcase_17 AC 383 ms
47,888 KB
testcase_18 AC 320 ms
48,140 KB
testcase_19 WA -
testcase_20 AC 241 ms
45,860 KB
testcase_21 AC 240 ms
45,936 KB
testcase_22 AC 241 ms
45,924 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, Integer> base = new TreeMap<>();
        base.put(volume, 0);
        int prev = 0;
        for (int i = 0; i < n; i++) {
            int x = sc.nextInt();
            int v = sc.nextInt();
            int w = sc.nextInt();
            TreeMap<Integer, Integer> next = new TreeMap<>();
            for (int y : base.keySet()) {
                int 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