結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,936 KB
testcase_01 AC 34 ms
53,556 KB
testcase_02 AC 34 ms
54,144 KB
testcase_03 AC 31 ms
52,636 KB
testcase_04 AC 739 ms
120,376 KB
testcase_05 AC 819 ms
118,524 KB
testcase_06 AC 982 ms
116,536 KB
testcase_07 AC 958 ms
116,072 KB
testcase_08 AC 1,055 ms
120,720 KB
testcase_09 AC 1,077 ms
120,920 KB
testcase_10 AC 945 ms
120,124 KB
testcase_11 AC 1,040 ms
123,516 KB
testcase_12 AC 902 ms
119,044 KB
testcase_13 AC 388 ms
86,556 KB
testcase_14 AC 170 ms
77,956 KB
testcase_15 AC 237 ms
80,172 KB
testcase_16 AC 32 ms
53,040 KB
testcase_17 AC 32 ms
53,268 KB
testcase_18 AC 34 ms
52,872 KB
testcase_19 AC 33 ms
52,840 KB
testcase_20 AC 32 ms
52,328 KB
testcase_21 AC 31 ms
52,828 KB
testcase_22 AC 32 ms
52,672 KB
testcase_23 AC 31 ms
53,840 KB
testcase_24 AC 31 ms
53,564 KB
testcase_25 AC 32 ms
52,644 KB
testcase_26 AC 31 ms
52,440 KB
testcase_27 AC 33 ms
52,824 KB
testcase_28 AC 32 ms
52,396 KB
testcase_29 AC 33 ms
53,572 KB
testcase_30 AC 33 ms
52,684 KB
testcase_31 AC 34 ms
53,616 KB
testcase_32 AC 1,055 ms
120,640 KB
testcase_33 AC 1,059 ms
119,704 KB
testcase_34 AC 756 ms
105,532 KB
testcase_35 AC 70 ms
76,412 KB
testcase_36 AC 644 ms
93,540 KB
testcase_37 AC 62 ms
74,628 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