結果
問題 | No.1037 exhausted |
ユーザー | ks2m |
提出日時 | 2020-04-24 23:15:57 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,382 bytes |
コンパイル時間 | 3,408 ms |
コンパイル使用メモリ | 78,072 KB |
実行使用メモリ | 49,684 KB |
最終ジャッジ日時 | 2024-10-15 03:48:25 |
合計ジャッジ時間 | 13,720 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 55 ms
36,848 KB |
testcase_01 | AC | 55 ms
36,592 KB |
testcase_02 | AC | 55 ms
36,968 KB |
testcase_03 | AC | 54 ms
37,268 KB |
testcase_04 | AC | 55 ms
37,148 KB |
testcase_05 | AC | 53 ms
37,024 KB |
testcase_06 | AC | 54 ms
37,236 KB |
testcase_07 | WA | - |
testcase_08 | AC | 53 ms
36,968 KB |
testcase_09 | WA | - |
testcase_10 | AC | 55 ms
36,720 KB |
testcase_11 | WA | - |
testcase_12 | AC | 1,031 ms
49,068 KB |
testcase_13 | AC | 1,041 ms
49,276 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 1,170 ms
49,684 KB |
testcase_17 | AC | 1,183 ms
49,196 KB |
testcase_18 | AC | 1,195 ms
49,172 KB |
testcase_19 | WA | - |
testcase_20 | AC | 125 ms
40,276 KB |
testcase_21 | AC | 122 ms
39,976 KB |
testcase_22 | AC | 119 ms
39,688 KB |
ソースコード
import java.io.BufferedReader; import java.io.InputStreamReader; import java.util.Map; import java.util.TreeMap; public class Main { public static void main(String[] args) throws Exception { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); String[] sa = br.readLine().split(" "); int n = Integer.parseInt(sa[0]); int m = Integer.parseInt(sa[1]); int l = Integer.parseInt(sa[2]); int[] x = new int[n]; int[] v = new int[n]; int[] w = new int[n]; for (int i = 0; i < n; i++) { sa = br.readLine().split(" "); x[i] = Integer.parseInt(sa[0]); v[i] = Integer.parseInt(sa[1]); w[i] = Integer.parseInt(sa[2]); } br.close(); TreeMap<Integer, Long> map = new TreeMap<>(); map.put(m, 0L); for (int i = 0; i < n; i++) { Map<Integer, Long> tm = map.tailMap(x[i]); if (tm.isEmpty()) { System.out.println(-1); return; } for (Integer o : tm.keySet().toArray(new Integer[0])) { int k = x[i] + Math.min(m, o - x[i] + v[i]); if (map.containsKey(k)) { map.put(k, Math.min(map.get(k), tm.get(o) + w[i])); } else { map.put(k, tm.get(o) + w[i]); } } } long ans = Long.MAX_VALUE; Map<Integer, Long> tm = map.tailMap(l); if (tm.isEmpty()) { System.out.println(-1); return; } for (long val : tm.values()) { ans = Math.min(ans, val); } System.out.println(ans); } }