結果

問題 No.1715 Dinner 2
ユーザー KudeKude
提出日時 2021-10-22 22:00:24
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 744 bytes
コンパイル時間 329 ms
コンパイル使用メモリ 81,784 KB
実行使用メモリ 77,184 KB
最終ジャッジ日時 2024-09-23 05:28:03
合計ジャッジ時間 9,751 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,480 KB
testcase_01 AC 40 ms
52,564 KB
testcase_02 AC 52 ms
61,824 KB
testcase_03 AC 40 ms
52,332 KB
testcase_04 AC 51 ms
61,440 KB
testcase_05 AC 48 ms
60,416 KB
testcase_06 AC 42 ms
52,608 KB
testcase_07 WA -
testcase_08 AC 50 ms
61,440 KB
testcase_09 AC 40 ms
52,736 KB
testcase_10 AC 47 ms
60,800 KB
testcase_11 AC 533 ms
76,384 KB
testcase_12 AC 512 ms
77,056 KB
testcase_13 AC 456 ms
77,184 KB
testcase_14 AC 470 ms
76,704 KB
testcase_15 AC 484 ms
76,752 KB
testcase_16 AC 407 ms
77,172 KB
testcase_17 AC 312 ms
76,248 KB
testcase_18 AC 109 ms
76,364 KB
testcase_19 AC 107 ms
76,160 KB
testcase_20 AC 113 ms
76,568 KB
testcase_21 AC 97 ms
76,316 KB
testcase_22 AC 109 ms
76,384 KB
testcase_23 AC 111 ms
76,352 KB
testcase_24 AC 108 ms
76,696 KB
testcase_25 AC 152 ms
76,264 KB
testcase_26 AC 137 ms
76,376 KB
testcase_27 AC 137 ms
76,568 KB
testcase_28 AC 148 ms
76,468 KB
testcase_29 AC 145 ms
76,576 KB
testcase_30 AC 141 ms
76,268 KB
testcase_31 AC 145 ms
76,376 KB
testcase_32 AC 639 ms
76,600 KB
testcase_33 AC 626 ms
76,948 KB
testcase_34 AC 631 ms
76,636 KB
testcase_35 AC 591 ms
76,864 KB
testcase_36 WA -
testcase_37 AC 39 ms
52,352 KB
testcase_38 AC 110 ms
75,924 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, d = map(int, input().split())
pq = []
ans = -10 ** 18
pq = list(tuple(map(int, input().split())) for _ in range(n))

l = -10 ** 9
r = 0
while r - l > 1:
    c = (l + r) // 2
    dp = [0] * n
    for _ in range(d):
        ndp = [-10 ** 9] * n
        mx = -10 ** 9
        imx = -1
        for i in range(n):
            if dp[i] > mx:
                mx = dp[i]
                imx = i
        for i, (p, q) in enumerate(pq):
            if i != imx and mx - p >= c:
                ndp[i] = mx - p + q
        p, q = pq[imx]
        for i in range(n):
            if i != imx and dp[i] - p >= c:
                ndp[i] = max(ndp[i], dp[i] - p + q)
        dp = ndp
    if max(dp) == -10 ** 9:
        r = c
    else:
        l = c
print(l)
0