結果

問題 No.324 落ちてた閉路グラフ
ユーザー rlangevinrlangevin
提出日時 2023-08-24 12:42:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,294 ms / 5,000 ms
コード長 793 bytes
コンパイル時間 797 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 123,648 KB
最終ジャッジ日時 2024-12-22 20:02:11
合計ジャッジ時間 18,494 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,352 KB
testcase_01 AC 42 ms
52,608 KB
testcase_02 AC 44 ms
52,224 KB
testcase_03 AC 40 ms
52,224 KB
testcase_04 AC 877 ms
120,576 KB
testcase_05 AC 973 ms
118,400 KB
testcase_06 AC 1,136 ms
116,480 KB
testcase_07 AC 1,135 ms
115,968 KB
testcase_08 AC 1,253 ms
120,960 KB
testcase_09 AC 1,268 ms
120,704 KB
testcase_10 AC 1,117 ms
120,064 KB
testcase_11 AC 1,221 ms
123,648 KB
testcase_12 AC 1,099 ms
119,052 KB
testcase_13 AC 481 ms
86,240 KB
testcase_14 AC 205 ms
77,892 KB
testcase_15 AC 293 ms
80,248 KB
testcase_16 AC 42 ms
51,968 KB
testcase_17 AC 42 ms
52,096 KB
testcase_18 AC 40 ms
51,840 KB
testcase_19 AC 40 ms
52,224 KB
testcase_20 AC 41 ms
52,224 KB
testcase_21 AC 40 ms
52,352 KB
testcase_22 AC 41 ms
52,352 KB
testcase_23 AC 48 ms
51,968 KB
testcase_24 AC 42 ms
51,968 KB
testcase_25 AC 40 ms
52,224 KB
testcase_26 AC 41 ms
51,840 KB
testcase_27 AC 41 ms
52,352 KB
testcase_28 AC 41 ms
51,968 KB
testcase_29 AC 43 ms
52,352 KB
testcase_30 AC 41 ms
51,968 KB
testcase_31 AC 41 ms
52,352 KB
testcase_32 AC 1,244 ms
120,584 KB
testcase_33 AC 1,294 ms
119,616 KB
testcase_34 AC 1,022 ms
105,412 KB
testcase_35 AC 100 ms
76,416 KB
testcase_36 AC 757 ms
93,612 KB
testcase_37 AC 89 ms
74,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
W = list(map(int, input().split()))
inf = 10 ** 18
pre = [[-inf] * 2 for i in range(N + 1)]
pre[0][0] = 0
for i in range(1, N):
    dp = [[-inf] * 2 for i in range(N + 1)]
    for j in range(N + 1):
        dp[j][0] = max(dp[j][0], pre[j][0], pre[j][1])
        if j:
            dp[j][1] = max(dp[j][1], pre[j - 1][1] + W[i - 1], pre[j - 1][0])
    dp, pre = pre, dp
ans = max(pre[M])

pre = [[-inf] * 2 for i in range(N + 1)]
pre[1][1] = 0
for i in range(1, N):
    dp = [[-inf] * 2 for i in range(N + 1)]
    for j in range(N + 1):
        dp[j][0] = max(dp[j][0], pre[j][0], pre[j][1])
        if j:
            dp[j][1] = max(dp[j][1], pre[j - 1][1] + W[i - 1], pre[j - 1][0])
    dp, pre = pre, dp

ans = max(ans, pre[M][0], pre[M][1] + W[-1])
print(ans)
0