結果
問題 | No.1037 exhausted |
ユーザー | norioc |
提出日時 | 2020-04-25 03:54:09 |
言語 | D (dmd 2.106.1) |
結果 |
AC
|
実行時間 | 39 ms / 2,000 ms |
コード長 | 1,543 bytes |
コンパイル時間 | 1,705 ms |
コンパイル使用メモリ | 179,260 KB |
実行使用メモリ | 36,648 KB |
最終ジャッジ日時 | 2024-06-22 06:46:34 |
合計ジャッジ時間 | 2,795 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,812 KB |
testcase_02 | AC | 1 ms
6,816 KB |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | AC | 1 ms
6,812 KB |
testcase_05 | AC | 1 ms
6,944 KB |
testcase_06 | AC | 1 ms
6,944 KB |
testcase_07 | AC | 1 ms
6,940 KB |
testcase_08 | AC | 1 ms
6,940 KB |
testcase_09 | AC | 1 ms
6,940 KB |
testcase_10 | AC | 1 ms
6,940 KB |
testcase_11 | AC | 1 ms
6,944 KB |
testcase_12 | AC | 35 ms
36,040 KB |
testcase_13 | AC | 34 ms
36,144 KB |
testcase_14 | AC | 37 ms
35,784 KB |
testcase_15 | AC | 37 ms
36,388 KB |
testcase_16 | AC | 38 ms
35,404 KB |
testcase_17 | AC | 38 ms
36,540 KB |
testcase_18 | AC | 39 ms
35,656 KB |
testcase_19 | AC | 38 ms
36,416 KB |
testcase_20 | AC | 24 ms
35,068 KB |
testcase_21 | AC | 16 ms
36,648 KB |
testcase_22 | AC | 24 ms
35,660 KB |
ソースコード
import std; alias GasStation = Tuple!(int, "x", int, "gas", int, "cost"); long calc(int v, int l, GasStation[] ss) { int n = cast(int)ss.length; ss ~= GasStation(l, 0, 0); // sentinel // dp[i 番目のガソリンスタンド][ガソリンの量] auto dp = new long[][](n + 1, v + 1); for (int i = 0; i < n + 1; i++) for (int j = 0; j < v + 1; j++) dp[i][j] = long.max; if (ss[0].x > v) return -1; dp[0][v - ss[0].x] = 0; for (int i = 0; i < n; i++) { int d = ss[i + 1].x - ss[i].x; for (int j = 0; j <= v; j++) { if (dp[i][j] == long.max) continue; if (j >= d) { // 補給なしで進む dp[i + 1][j - d] = min(dp[i + 1][j - d], dp[i][j]); } // 補給して進む auto v2 = min(v, j + ss[i].gas); if (v2 >= d) { dp[i + 1][v2 - d] = min(dp[i + 1][v2 - d], dp[i][j] + ss[i].cost); } } } long ans = dp[n].minElement; return ans == long.max ? -1 : ans; } void main() { int n, v, l; scan(n, v, l); GasStation[] ss; foreach (_; 0..n) { int x, gas, cost; scan(x, gas, cost); ss ~= GasStation(x, gas, cost); } writeln(calc(v, l, ss)); } void scan(T...)(ref T a) { string[] ss = readln.split; foreach (i, t; T) a[i] = ss[i].to!t; } T read(T)() { return readln.chomp.to!T; } T[] reads(T)() { return readln.split.to!(T[]); } alias readint = read!int; alias readints = reads!int;