結果

問題 No.1536 仕切り直し
ユーザー logxlogx
提出日時 2021-03-24 23:07:01
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 794 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 82,104 KB
実行使用メモリ 91,892 KB
最終ジャッジ日時 2024-11-25 06:30:54
合計ジャッジ時間 2,391 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,280 KB
testcase_01 AC 35 ms
52,204 KB
testcase_02 AC 34 ms
51,996 KB
testcase_03 AC 54 ms
68,172 KB
testcase_04 AC 88 ms
83,460 KB
testcase_05 WA -
testcase_06 AC 57 ms
68,596 KB
testcase_07 AC 56 ms
68,736 KB
testcase_08 AC 84 ms
82,660 KB
testcase_09 AC 92 ms
84,732 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)
for i in range(m-cnt):
    print(n)
0