結果

問題 No.1715 Dinner 2
ユーザー irumo8202irumo8202
提出日時 2022-01-22 10:25:00
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 941 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 61,312 KB
最終ジャッジ日時 2024-11-27 04:21:52
合計ジャッジ時間 50,112 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
16,000 KB
testcase_01 AC 27 ms
52,308 KB
testcase_02 AC 32 ms
16,000 KB
testcase_03 AC 27 ms
46,720 KB
testcase_04 AC 29 ms
16,000 KB
testcase_05 AC 28 ms
42,752 KB
testcase_06 AC 26 ms
16,000 KB
testcase_07 AC 28 ms
46,424 KB
testcase_08 AC 29 ms
15,872 KB
testcase_09 AC 27 ms
46,976 KB
testcase_10 AC 28 ms
16,000 KB
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 148 ms
16,256 KB
testcase_19 AC 321 ms
61,312 KB
testcase_20 AC 124 ms
16,000 KB
testcase_21 AC 87 ms
11,008 KB
testcase_22 AC 168 ms
11,008 KB
testcase_23 AC 309 ms
11,008 KB
testcase_24 AC 184 ms
11,008 KB
testcase_25 TLE -
testcase_26 AC 1,475 ms
12,672 KB
testcase_27 AC 1,503 ms
12,544 KB
testcase_28 TLE -
testcase_29 TLE -
testcase_30 AC 1,999 ms
13,532 KB
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 AC 27 ms
10,880 KB
testcase_37 AC 27 ms
10,752 KB
testcase_38 AC 184 ms
61,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, D = map(int, input().split())
INF = 1 << 60

p = []
q = []
for _ in range(N):
    s, t = map(int, input().split())
    p.append(s)
    q.append(t)


def solve(x):
    dp = [[-INF] * N for _ in range(D)]
    for i in range(N):
        if -p[i] >= x:
            dp[0][i] = q[i] - p[i]
    for i in range(1, D):
        la = [-INF for _ in range(N + 1)]
        ra = [-INF for _ in range(N + 1)]
        for j in range(N):
            la[j + 1] = max(la[j], dp[i - 1][j])
            ra[j + 1] = max(ra[j], dp[i - 1][N - j - 1])
        for j in range(N):
            tmp = max(la[j], ra[N - j - 1])
            if tmp - p[j] >= x:
                dp[i][j] = tmp - p[j] + q[j]

    for i in range(N):
        if dp[D - 1][i] != -INF:
            return True
    return False


left = -(10 ** 8)
right = 0

while right - left > 1:
    mid = (right + left) // 2
    if solve(mid):
        left = mid
    else:
        right = mid

print(left)
0