結果

問題 No.1606 Stuffed Animals Keeper
ユーザー KudeKude
提出日時 2021-07-16 22:14:31
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 645 bytes
コンパイル時間 239 ms
コンパイル使用メモリ 81,860 KB
実行使用メモリ 251,536 KB
最終ジャッジ日時 2024-07-06 09:33:56
合計ジャッジ時間 6,022 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
51,968 KB
testcase_01 AC 31 ms
52,480 KB
testcase_02 AC 31 ms
51,712 KB
testcase_03 AC 103 ms
77,020 KB
testcase_04 AC 179 ms
201,600 KB
testcase_05 AC 68 ms
75,992 KB
testcase_06 AC 76 ms
76,288 KB
testcase_07 AC 99 ms
76,740 KB
testcase_08 AC 90 ms
76,924 KB
testcase_09 AC 71 ms
76,160 KB
testcase_10 AC 64 ms
76,416 KB
testcase_11 AC 53 ms
71,296 KB
testcase_12 AC 74 ms
76,300 KB
testcase_13 AC 39 ms
60,160 KB
testcase_14 AC 39 ms
60,672 KB
testcase_15 RE -
testcase_16 AC 212 ms
239,104 KB
testcase_17 AC 220 ms
242,304 KB
testcase_18 AC 225 ms
241,920 KB
testcase_19 AC 214 ms
240,384 KB
testcase_20 AC 218 ms
240,384 KB
testcase_21 AC 78 ms
91,264 KB
testcase_22 AC 72 ms
87,808 KB
testcase_23 AC 73 ms
88,960 KB
testcase_24 AC 74 ms
91,264 KB
testcase_25 AC 73 ms
88,832 KB
testcase_26 AC 53 ms
70,748 KB
testcase_27 AC 55 ms
71,168 KB
testcase_28 AC 55 ms
70,784 KB
testcase_29 AC 55 ms
71,296 KB
testcase_30 AC 53 ms
69,888 KB
testcase_31 AC 50 ms
67,840 KB
testcase_32 AC 42 ms
62,592 KB
testcase_33 AC 47 ms
66,432 KB
testcase_34 AC 44 ms
64,000 KB
testcase_35 AC 49 ms
67,712 KB
testcase_36 AC 49 ms
66,944 KB
testcase_37 AC 47 ms
65,664 KB
testcase_38 AC 47 ms
66,176 KB
testcase_39 AC 44 ms
64,000 KB
testcase_40 AC 43 ms
64,000 KB
testcase_41 AC 41 ms
61,568 KB
testcase_42 AC 40 ms
61,696 KB
testcase_43 AC 241 ms
251,264 KB
testcase_44 AC 242 ms
251,536 KB
testcase_45 AC 245 ms
251,136 KB
testcase_46 AC 244 ms
251,136 KB
testcase_47 AC 248 ms
251,136 KB
testcase_48 AC 34 ms
51,968 KB
testcase_49 AC 34 ms
52,224 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] * (4 * n + 10)
B = 2 * n + 5
dp[B] = 0
for c0, c1 in b:
    ndp = [INF] * (4 * 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