結果

問題 No.1715 Dinner 2
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-10-23 12:10:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 825 ms / 2,000 ms
コード長 669 bytes
コンパイル時間 372 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 77,472 KB
最終ジャッジ日時 2024-09-25 03:16:36
合計ジャッジ時間 10,205 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,352 KB
testcase_01 AC 41 ms
52,864 KB
testcase_02 AC 49 ms
62,464 KB
testcase_03 AC 37 ms
52,608 KB
testcase_04 AC 45 ms
60,160 KB
testcase_05 AC 44 ms
59,904 KB
testcase_06 AC 38 ms
52,480 KB
testcase_07 AC 44 ms
59,904 KB
testcase_08 AC 51 ms
59,648 KB
testcase_09 AC 39 ms
52,532 KB
testcase_10 AC 43 ms
59,520 KB
testcase_11 AC 570 ms
77,056 KB
testcase_12 AC 582 ms
76,948 KB
testcase_13 AC 417 ms
77,056 KB
testcase_14 AC 569 ms
76,928 KB
testcase_15 AC 552 ms
77,392 KB
testcase_16 AC 436 ms
76,960 KB
testcase_17 AC 363 ms
76,672 KB
testcase_18 AC 111 ms
76,480 KB
testcase_19 AC 112 ms
75,936 KB
testcase_20 AC 107 ms
76,580 KB
testcase_21 AC 92 ms
76,212 KB
testcase_22 AC 106 ms
76,432 KB
testcase_23 AC 110 ms
76,416 KB
testcase_24 AC 102 ms
76,212 KB
testcase_25 AC 144 ms
76,532 KB
testcase_26 AC 130 ms
76,580 KB
testcase_27 AC 136 ms
76,256 KB
testcase_28 AC 139 ms
76,244 KB
testcase_29 AC 142 ms
76,224 KB
testcase_30 AC 147 ms
76,484 KB
testcase_31 AC 146 ms
76,304 KB
testcase_32 AC 772 ms
77,056 KB
testcase_33 AC 699 ms
77,336 KB
testcase_34 AC 721 ms
77,312 KB
testcase_35 AC 825 ms
77,472 KB
testcase_36 AC 38 ms
52,480 KB
testcase_37 AC 38 ms
52,864 KB
testcase_38 AC 96 ms
76,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,D = map(int,input().split())
PQ = [list(map(int,input().split())) for i in range(n)]
inf = 10**8
def search(x):
    ldp = [0]*(n+1)
    rdp = [0]*(n+1)
    ldp[-1] = rdp[-1] = -inf
    for i in range(D):
        ndp = [-inf]*(n+1)
        for j,(p,q) in enumerate(PQ):
            nex = max(ldp[j-1],rdp[j+1])
            if nex-p >= x:
                ndp[j] = nex-p+q
        for j in range(n):
            ldp[j] = max(ndp[j],ldp[j-1])
            rdp[n-1-j] = max(ndp[n-1-j],rdp[n-j])
    if rdp[0] != -inf:
        return True
    return False



l = -inf
r = 0

while r > l + 1:
    m = (r+l)//2

    if search(m):
        l = m
    else:
        r = m
print(l)
0