結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,208 KB
testcase_01 AC 43 ms
52,216 KB
testcase_02 AC 38 ms
53,584 KB
testcase_03 AC 63 ms
68,924 KB
testcase_04 AC 97 ms
83,736 KB
testcase_05 WA -
testcase_06 AC 62 ms
67,796 KB
testcase_07 AC 60 ms
67,808 KB
testcase_08 AC 96 ms
82,656 KB
testcase_09 AC 101 ms
84,920 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