結果
問題 | No.1037 exhausted |
ユーザー | c-yan |
提出日時 | 2020-04-24 23:04:25 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 561 bytes |
コンパイル時間 | 491 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 16,256 KB |
最終ジャッジ日時 | 2024-10-15 03:41:53 |
合計ジャッジ時間 | 15,505 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
15,872 KB |
testcase_01 | AC | 30 ms
10,624 KB |
testcase_02 | AC | 30 ms
10,624 KB |
testcase_03 | AC | 30 ms
10,496 KB |
testcase_04 | AC | 30 ms
10,496 KB |
testcase_05 | AC | 30 ms
10,624 KB |
testcase_06 | AC | 30 ms
10,624 KB |
testcase_07 | AC | 30 ms
10,624 KB |
testcase_08 | AC | 30 ms
10,624 KB |
testcase_09 | AC | 30 ms
10,624 KB |
testcase_10 | AC | 31 ms
10,624 KB |
testcase_11 | AC | 30 ms
10,624 KB |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | TLE | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
ソースコード
N, V, L = map(int, input().split()) cx = 0 d = {} d[V] = 0 for _ in range(N): x, v, w = map(int, input().split()) nd = {} for k in d: t = k - (x - cx) if t < 0: continue if t not in nd or nd[t] > d[k]: nd[t] = d[k] t = min(t + v, V) if t not in nd or nd[t] > d[k] + w: nd[t] = d[k] + w if len(nd) == 0: print(-1) exit() d = nd cx = x result = float('inf') for k in d: if k - (L - cx) >= 0: result = min(result, d[k]) print(result)