結果

問題 No.1536 仕切り直し
ユーザー logxlogx
提出日時 2021-03-24 22:50:29
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 727 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 116,608 KB
最終ジャッジ日時 2024-11-25 06:30:32
合計ジャッジ時間 16,642 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
17,572 KB
testcase_01 AC 27 ms
102,400 KB
testcase_02 AC 26 ms
17,572 KB
testcase_03 AC 203 ms
116,608 KB
testcase_04 AC 1,606 ms
61,860 KB
testcase_05 TLE -
testcase_06 AC 91 ms
12,544 KB
testcase_07 AC 163 ms
14,592 KB
testcase_08 AC 1,297 ms
45,696 KB
testcase_09 AC 1,805 ms
58,752 KB
testcase_10 TLE -
testcase_11 WA -
testcase_12 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())
a=list(map(int,input().split()))

dp=[[-10**19]*(m+1) for i in range(n)]
dp[0][0]=0

dp[0][0]=a[0]
dp[0][1]=-a[0]

def val(x,cnt):
    if cnt&1:
        return -x
    return x

for i in range(n-1):
    for j in range(m+1):
        dp[i+1][j]=max(dp[i+1][j],dp[i][j]+val(a[i+1],j))
        if j<m:
            dp[i+1][j+1]=max(dp[i+1][j+1],dp[i][j]+val(a[i+1],j+1))

res=-10**19
idx=-1
for j in range(m+1):
    if res<dp[n-1][j]:
        res=dp[n-1][j]
        idx=j

ans=[]
for i in reversed(range(n-1)):
    if dp[i+1][idx]!=dp[i][idx]+val(a[i+1],idx):
        idx-=1
        ans.append(i+1)
if idx>0:
    ans.append(1)
for i in reversed(ans):
    print(i)
for i in range(m-len(ans)):
    print(n)
0