結果

問題 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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
55,080 KB
testcase_01 AC 36 ms
54,908 KB
testcase_02 AC 36 ms
54,168 KB
testcase_03 AC 177 ms
77,816 KB
testcase_04 AC 215 ms
78,368 KB
testcase_05 AC 88 ms
76,580 KB
testcase_06 AC 115 ms
77,264 KB
testcase_07 AC 174 ms
77,664 KB
testcase_08 AC 160 ms
77,248 KB
testcase_09 AC 106 ms
76,832 KB
testcase_10 AC 89 ms
76,580 KB
testcase_11 AC 76 ms
76,884 KB
testcase_12 AC 112 ms
77,372 KB
testcase_13 AC 42 ms
61,688 KB
testcase_14 AC 41 ms
62,380 KB
testcase_15 AC 41 ms
61,668 KB
testcase_16 AC 235 ms
79,072 KB
testcase_17 AC 245 ms
79,112 KB
testcase_18 AC 247 ms
79,940 KB
testcase_19 AC 243 ms
79,596 KB
testcase_20 AC 236 ms
79,436 KB
testcase_21 AC 127 ms
77,556 KB
testcase_22 AC 117 ms
77,084 KB
testcase_23 AC 117 ms
77,356 KB
testcase_24 AC 113 ms
77,328 KB
testcase_25 AC 111 ms
76,856 KB
testcase_26 AC 85 ms
76,604 KB
testcase_27 AC 83 ms
76,872 KB
testcase_28 AC 84 ms
76,704 KB
testcase_29 AC 88 ms
76,728 KB
testcase_30 AC 81 ms
77,000 KB
testcase_31 AC 81 ms
76,968 KB
testcase_32 AC 42 ms
62,776 KB
testcase_33 AC 78 ms
76,676 KB
testcase_34 AC 47 ms
63,616 KB
testcase_35 AC 82 ms
76,676 KB
testcase_36 AC 77 ms
76,532 KB
testcase_37 AC 76 ms
76,872 KB
testcase_38 AC 74 ms
76,680 KB
testcase_39 AC 42 ms
62,688 KB
testcase_40 AC 43 ms
62,692 KB
testcase_41 AC 42 ms
62,544 KB
testcase_42 AC 41 ms
62,336 KB
testcase_43 AC 204 ms
78,044 KB
testcase_44 AC 192 ms
77,692 KB
testcase_45 AC 203 ms
77,544 KB
testcase_46 AC 180 ms
77,364 KB
testcase_47 AC 187 ms
77,520 KB
testcase_48 AC 37 ms
55,132 KB
testcase_49 AC 37 ms
54,564 KB
testcase_50 AC 35 ms
55,316 KB
権限があれば一括ダウンロードができます

ソースコード

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