結果

問題 No.1037 exhausted
ユーザー Kiri8128Kiri8128
提出日時 2020-04-24 22:26:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 107 ms / 2,000 ms
コード長 628 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 76,800 KB
最終ジャッジ日時 2024-10-15 03:10:13
合計ジャッジ時間 2,433 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,584 KB
testcase_01 AC 37 ms
51,712 KB
testcase_02 AC 35 ms
52,224 KB
testcase_03 AC 34 ms
51,968 KB
testcase_04 AC 37 ms
51,968 KB
testcase_05 AC 36 ms
51,840 KB
testcase_06 AC 37 ms
51,840 KB
testcase_07 AC 36 ms
52,224 KB
testcase_08 AC 35 ms
51,968 KB
testcase_09 AC 37 ms
52,224 KB
testcase_10 AC 41 ms
51,968 KB
testcase_11 AC 38 ms
52,224 KB
testcase_12 AC 103 ms
76,728 KB
testcase_13 AC 99 ms
76,436 KB
testcase_14 AC 100 ms
76,544 KB
testcase_15 AC 102 ms
76,488 KB
testcase_16 AC 103 ms
76,416 KB
testcase_17 AC 107 ms
76,416 KB
testcase_18 AC 99 ms
76,492 KB
testcase_19 AC 101 ms
76,800 KB
testcase_20 AC 67 ms
72,704 KB
testcase_21 AC 68 ms
72,576 KB
testcase_22 AC 66 ms
72,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def calc(S, v, w):
    T = sorted(S[:] + [(min(s[0] + v, V), s[1] + w) for s in S], key = lambda x: -x[0])
    U = []
    prew = 1 << 100
    prev = 1 << 100
    for t in T:
        if t[1] < prew:
            if t[0] == prev:
                U.pop()
            U.append(t)
            prew = t[1]
            prev = t[0]
    return U

N, V, L = map(int, input().split())
S = [(V, 0)]
prex = 0
for _ in range(N):
    x, v, w = map(int, input().split())
    dx = x - prex
    prex = x
    S = [(v - dx, w) for v, w in S if v >= dx]
    S = calc(S, v, w)

dx = L - prex
A = [w for v, w in S if v >= dx]
print(min(A) if A else -1)
0