結果

問題 No.1606 Stuffed Animals Keeper
ユーザー KudeKude
提出日時 2021-07-16 23:26:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 128 ms / 3,000 ms
コード長 640 bytes
コンパイル時間 292 ms
コンパイル使用メモリ 82,156 KB
実行使用メモリ 77,040 KB
最終ジャッジ日時 2024-07-06 11:03:40
合計ジャッジ時間 4,841 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,628 KB
testcase_01 AC 34 ms
52,008 KB
testcase_02 AC 37 ms
52,808 KB
testcase_03 AC 111 ms
76,484 KB
testcase_04 AC 98 ms
76,388 KB
testcase_05 AC 61 ms
76,156 KB
testcase_06 AC 68 ms
75,560 KB
testcase_07 AC 85 ms
76,084 KB
testcase_08 AC 80 ms
76,404 KB
testcase_09 AC 68 ms
75,684 KB
testcase_10 AC 60 ms
73,508 KB
testcase_11 AC 53 ms
68,572 KB
testcase_12 AC 72 ms
75,700 KB
testcase_13 AC 41 ms
60,736 KB
testcase_14 AC 43 ms
61,516 KB
testcase_15 AC 43 ms
60,032 KB
testcase_16 AC 110 ms
76,788 KB
testcase_17 AC 116 ms
76,668 KB
testcase_18 AC 118 ms
76,568 KB
testcase_19 AC 109 ms
76,744 KB
testcase_20 AC 120 ms
76,444 KB
testcase_21 AC 66 ms
75,244 KB
testcase_22 AC 63 ms
75,292 KB
testcase_23 AC 63 ms
76,084 KB
testcase_24 AC 63 ms
75,448 KB
testcase_25 AC 61 ms
75,312 KB
testcase_26 AC 49 ms
68,144 KB
testcase_27 AC 48 ms
69,260 KB
testcase_28 AC 49 ms
68,776 KB
testcase_29 AC 47 ms
68,468 KB
testcase_30 AC 48 ms
67,016 KB
testcase_31 AC 46 ms
67,236 KB
testcase_32 AC 41 ms
62,784 KB
testcase_33 AC 45 ms
64,484 KB
testcase_34 AC 43 ms
64,004 KB
testcase_35 AC 46 ms
65,480 KB
testcase_36 AC 45 ms
65,872 KB
testcase_37 AC 44 ms
64,792 KB
testcase_38 AC 44 ms
65,712 KB
testcase_39 AC 42 ms
63,132 KB
testcase_40 AC 42 ms
63,444 KB
testcase_41 AC 41 ms
61,688 KB
testcase_42 AC 44 ms
62,436 KB
testcase_43 AC 125 ms
76,968 KB
testcase_44 AC 128 ms
76,964 KB
testcase_45 AC 124 ms
76,728 KB
testcase_46 AC 126 ms
76,612 KB
testcase_47 AC 122 ms
77,040 KB
testcase_48 AC 34 ms
52,924 KB
testcase_49 AC 33 ms
52,476 KB
testcase_50 AC 32 ms
52,084 KB
権限があれば一括ダウンロードができます

ソースコード

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 = dp[B]
if ans == INF:
    ans = -1
else:
    ans //= 2
print(ans)
0