結果

問題 No.1606 Stuffed Animals Keeper
ユーザー KudeKude
提出日時 2021-07-16 22:09:47
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 641 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 82,180 KB
実行使用メモリ 77,128 KB
最終ジャッジ日時 2024-07-06 09:24:51
合計ジャッジ時間 4,757 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,968 KB
testcase_01 AC 36 ms
51,712 KB
testcase_02 AC 37 ms
52,224 KB
testcase_03 AC 96 ms
76,032 KB
testcase_04 AC 96 ms
76,288 KB
testcase_05 AC 59 ms
75,904 KB
testcase_06 AC 73 ms
76,160 KB
testcase_07 AC 85 ms
76,160 KB
testcase_08 AC 80 ms
76,288 KB
testcase_09 AC 66 ms
76,032 KB
testcase_10 AC 54 ms
72,960 KB
testcase_11 AC 48 ms
66,688 KB
testcase_12 AC 72 ms
76,288 KB
testcase_13 AC 38 ms
59,648 KB
testcase_14 AC 38 ms
59,776 KB
testcase_15 RE -
testcase_16 AC 104 ms
76,672 KB
testcase_17 AC 113 ms
76,544 KB
testcase_18 AC 118 ms
76,672 KB
testcase_19 AC 109 ms
76,608 KB
testcase_20 AC 112 ms
76,800 KB
testcase_21 AC 62 ms
75,776 KB
testcase_22 AC 60 ms
76,160 KB
testcase_23 AC 63 ms
76,032 KB
testcase_24 AC 60 ms
75,776 KB
testcase_25 AC 62 ms
75,616 KB
testcase_26 AC 46 ms
67,328 KB
testcase_27 AC 48 ms
67,968 KB
testcase_28 AC 48 ms
66,688 KB
testcase_29 AC 47 ms
67,456 KB
testcase_30 AC 48 ms
66,304 KB
testcase_31 AC 46 ms
65,152 KB
testcase_32 AC 42 ms
61,824 KB
testcase_33 AC 58 ms
64,896 KB
testcase_34 AC 46 ms
62,464 KB
testcase_35 AC 48 ms
64,896 KB
testcase_36 AC 49 ms
65,536 KB
testcase_37 AC 50 ms
64,384 KB
testcase_38 AC 47 ms
63,872 KB
testcase_39 AC 44 ms
62,848 KB
testcase_40 AC 44 ms
62,464 KB
testcase_41 AC 42 ms
61,696 KB
testcase_42 AC 41 ms
61,184 KB
testcase_43 AC 120 ms
76,800 KB
testcase_44 AC 121 ms
76,800 KB
testcase_45 AC 128 ms
76,928 KB
testcase_46 AC 127 ms
77,064 KB
testcase_47 AC 123 ms
77,128 KB
testcase_48 AC 33 ms
51,840 KB
testcase_49 AC 32 ms
51,712 KB
testcase_50 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int, input().split()))
a.append(2)
b = []
c0 = c1 = 0
for x in a:
    if x == 0:
        c0 += 1
    elif x == 1:
        c1 += 1
    else:
        if c0 or c1:
            b.append((c0, c1))
            c0 = c1 = 0
INF = 10 ** 9
dp = [INF] * (2 * n + 10)
B = n + 5
dp[B] = 0
for c0, c1 in b:
    ndp = [INF] * (2 * n + 10)
    for i in range(-n, n):
        if dp[B + i] == INF:
            continue
        ndp[B + i + c1] = min(ndp[B + i + c1], dp[B + i] + c1)
        ndp[B + i - c0] = min(ndp[B + i - c0], dp[B + i] + c0)
    dp = ndp
ans = ndp[B]
if ans == INF:
    ans = -1
else:
    ans //= 2
print(ans)
0