結果

問題 No.1715 Dinner 2
ユーザー H20H20
提出日時 2021-10-22 22:20:20
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 979 bytes
コンパイル時間 851 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 87,504 KB
最終ジャッジ日時 2024-09-23 05:56:42
合計ジャッジ時間 3,972 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 38 ms
51,840 KB
testcase_02 AC 39 ms
52,736 KB
testcase_03 AC 38 ms
51,840 KB
testcase_04 AC 38 ms
52,352 KB
testcase_05 WA -
testcase_06 AC 38 ms
52,224 KB
testcase_07 WA -
testcase_08 AC 37 ms
51,840 KB
testcase_09 AC 38 ms
52,224 KB
testcase_10 WA -
testcase_11 AC 103 ms
87,504 KB
testcase_12 AC 101 ms
86,256 KB
testcase_13 AC 98 ms
85,240 KB
testcase_14 AC 97 ms
86,260 KB
testcase_15 AC 100 ms
86,656 KB
testcase_16 AC 97 ms
86,048 KB
testcase_17 AC 77 ms
74,072 KB
testcase_18 WA -
testcase_19 AC 57 ms
65,664 KB
testcase_20 AC 60 ms
66,176 KB
testcase_21 AC 51 ms
62,656 KB
testcase_22 WA -
testcase_23 AC 60 ms
67,072 KB
testcase_24 AC 58 ms
64,512 KB
testcase_25 AC 60 ms
66,944 KB
testcase_26 AC 59 ms
66,432 KB
testcase_27 AC 62 ms
67,712 KB
testcase_28 AC 62 ms
67,200 KB
testcase_29 AC 59 ms
66,432 KB
testcase_30 AC 63 ms
67,584 KB
testcase_31 AC 60 ms
67,200 KB
testcase_32 AC 110 ms
86,392 KB
testcase_33 AC 113 ms
86,620 KB
testcase_34 AC 111 ms
86,304 KB
testcase_35 AC 111 ms
86,668 KB
testcase_36 AC 38 ms
52,440 KB
testcase_37 WA -
testcase_38 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N,D=map(int, input().split())
PQ = [list(map(int, input().split())) for _ in range(N)]
DP = [[0]*N for _ in range(2*D)]
maxv = -10**12
maxi = -1
nextv = -10**12
for i in range(N):
    DP[0][i]=-PQ[i][0]
    DP[1][i]=PQ[i][1]-PQ[i][0]
    if DP[1][i]>=maxv:
        nextv = maxv
        maxv = DP[1][i]
        maxi = i
    else:
        nextv = max(nextv,DP[1][i])
for d in range(2,2*D):
    if d%2==0:
        nextmax = -10**12
        for i in range(N):
            if maxi==i:
                DP[d][i]=-PQ[i][0]+nextv
            else:
                DP[d][i]=-PQ[i][0]+maxv
    else:
        maxv = -10**12
        maxi = -1
        nextv = -10**12
        for i in range(N):
            DP[d][i]=PQ[i][1]-DP[d-1][i]
            if DP[d][i]>=maxv:
                nextv = maxv
                maxv = DP[d][i]
                maxi = i
            else:
                nextv = max(nextv,DP[d][i])
ans = 10**12
for i in range(0,2*D,2):
    ans = min(ans,max(DP[i]))
print(ans)
0