結果

問題 No.1715 Dinner 2
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-10-23 12:07:01
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 669 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,136 KB
実行使用メモリ 77,548 KB
最終ジャッジ日時 2024-09-25 03:14:01
合計ジャッジ時間 11,272 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,224 KB
testcase_01 WA -
testcase_02 AC 50 ms
63,112 KB
testcase_03 AC 38 ms
52,992 KB
testcase_04 AC 46 ms
60,288 KB
testcase_05 AC 46 ms
60,160 KB
testcase_06 AC 39 ms
52,480 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 39 ms
52,224 KB
testcase_10 WA -
testcase_11 AC 723 ms
77,548 KB
testcase_12 AC 574 ms
76,800 KB
testcase_13 AC 502 ms
77,116 KB
testcase_14 AC 604 ms
76,800 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 393 ms
76,896 KB
testcase_18 AC 113 ms
77,072 KB
testcase_19 AC 119 ms
76,920 KB
testcase_20 AC 109 ms
76,760 KB
testcase_21 AC 96 ms
75,712 KB
testcase_22 AC 111 ms
76,780 KB
testcase_23 AC 118 ms
76,772 KB
testcase_24 AC 108 ms
76,460 KB
testcase_25 AC 171 ms
76,700 KB
testcase_26 AC 142 ms
76,708 KB
testcase_27 AC 152 ms
76,076 KB
testcase_28 AC 154 ms
76,468 KB
testcase_29 AC 165 ms
76,204 KB
testcase_30 AC 167 ms
76,744 KB
testcase_31 WA -
testcase_32 AC 860 ms
77,312 KB
testcase_33 AC 857 ms
77,488 KB
testcase_34 AC 858 ms
77,276 KB
testcase_35 AC 893 ms
77,440 KB
testcase_36 AC 38 ms
51,968 KB
testcase_37 AC 39 ms
52,480 KB
testcase_38 AC 109 ms
76,172 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-1],ndp[j])
            rdp[n-1-j] = max(ndp[n-1-j],ndp[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