結果

問題 No.1536 仕切り直し
ユーザー logxlogx
提出日時 2021-03-24 23:11:40
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 805 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 92,076 KB
最終ジャッジ日時 2024-05-04 00:45:17
合計ジャッジ時間 2,821 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,840 KB
testcase_01 AC 42 ms
52,352 KB
testcase_02 AC 41 ms
51,968 KB
testcase_03 AC 70 ms
66,944 KB
testcase_04 AC 109 ms
83,072 KB
testcase_05 WA -
testcase_06 AC 70 ms
67,584 KB
testcase_07 AC 73 ms
67,200 KB
testcase_08 AC 108 ms
82,688 KB
testcase_09 AC 102 ms
84,608 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

dp=[[-10**18]*(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):
    older=dp[i]
    newer=dp[i+1]
    for j in range(m+1):
        x=older[j]+(-a[i+1] if j&1 else a[i+1])
        if newer[j]<x:newer[j]=x
        if j<m:
            x=older[j]+(a[i+1] if j&1 else -a[i+1])
            if newer[j+1]<x:newer[j+1]=x

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

cnt=0
for i in reversed(range(n-1)):
    if dp[i+1][idx]!=dp[i][idx]+(-a[i+1] if idx&1 else a[i+1]):
        idx-=1
        cnt+=1
        print(i+1)

if idx>0:
    print(1)
    cnt+=1
for i in range(m-cnt):
    print(n)
0