結果

問題 No.1606 Stuffed Animals Keeper
ユーザー convexineqconvexineq
提出日時 2021-07-16 22:06:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 247 ms / 3,000 ms
コード長 537 bytes
コンパイル時間 197 ms
コンパイル使用メモリ 82,184 KB
実行使用メモリ 79,940 KB
最終ジャッジ日時 2024-07-06 09:20:39
合計ジャッジ時間 6,988 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 48
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
*a, = map(int,input().split())
a.append(2)
res = []
c = d = 0
for ai in a:
    if ai == 0:
        c += 1
    elif ai == 1:
        d += 1
    else:
        if c or d:
            res.append((c,d))
        c = d = 0
dp = {0:0} # 差が k になる最小回数が v
from collections import defaultdict
for c,d in res:
    ndp = defaultdict(lambda :100000)
    for k,v in dp.items():
        ndp[k+c] = min(ndp[k+c],v+c)
        ndp[k-d] = min(ndp[k-d],v+d)
    dp = ndp
if 0 in dp:
    print(dp[0]//2)
else:
    print(-1)
0