結果

問題 No.1606 Stuffed Animals Keeper
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2021-04-15 21:43:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 73 ms / 3,000 ms
コード長 1,028 bytes
コンパイル時間 267 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 70,748 KB
最終ジャッジ日時 2024-07-06 07:49:33
合計ジャッジ時間 4,037 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
53,360 KB
testcase_01 AC 32 ms
53,544 KB
testcase_02 AC 32 ms
52,592 KB
testcase_03 AC 62 ms
68,880 KB
testcase_04 AC 65 ms
68,816 KB
testcase_05 AC 48 ms
65,988 KB
testcase_06 AC 50 ms
65,940 KB
testcase_07 AC 61 ms
69,224 KB
testcase_08 AC 60 ms
68,980 KB
testcase_09 AC 55 ms
66,724 KB
testcase_10 AC 49 ms
65,476 KB
testcase_11 AC 45 ms
65,456 KB
testcase_12 AC 57 ms
68,264 KB
testcase_13 AC 36 ms
59,592 KB
testcase_14 AC 36 ms
61,104 KB
testcase_15 AC 36 ms
60,452 KB
testcase_16 AC 66 ms
69,860 KB
testcase_17 AC 68 ms
68,732 KB
testcase_18 AC 73 ms
70,748 KB
testcase_19 AC 70 ms
70,228 KB
testcase_20 AC 71 ms
68,696 KB
testcase_21 AC 52 ms
68,264 KB
testcase_22 AC 52 ms
68,216 KB
testcase_23 AC 58 ms
68,440 KB
testcase_24 AC 53 ms
67,196 KB
testcase_25 AC 51 ms
68,000 KB
testcase_26 AC 51 ms
67,416 KB
testcase_27 AC 52 ms
67,508 KB
testcase_28 AC 53 ms
67,296 KB
testcase_29 AC 51 ms
67,848 KB
testcase_30 AC 50 ms
67,668 KB
testcase_31 AC 50 ms
66,868 KB
testcase_32 AC 43 ms
63,888 KB
testcase_33 AC 50 ms
67,080 KB
testcase_34 AC 43 ms
63,004 KB
testcase_35 AC 50 ms
66,948 KB
testcase_36 AC 51 ms
67,660 KB
testcase_37 AC 50 ms
68,184 KB
testcase_38 AC 50 ms
67,324 KB
testcase_39 AC 46 ms
63,256 KB
testcase_40 AC 43 ms
63,176 KB
testcase_41 AC 42 ms
60,988 KB
testcase_42 AC 40 ms
60,568 KB
testcase_43 AC 73 ms
67,452 KB
testcase_44 AC 69 ms
66,428 KB
testcase_45 AC 66 ms
66,428 KB
testcase_46 AC 68 ms
66,884 KB
testcase_47 AC 67 ms
66,928 KB
testcase_48 AC 33 ms
52,596 KB
testcase_49 AC 33 ms
52,096 KB
testcase_50 AC 33 ms
53,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from sys import stdin

N = int(stdin.readline())
A = list(map(int,stdin.readline().split()))

#制約チェック
#assert 2 <= N <= 3000
#assert len(A) == N
#for i in A:
#    assert 0 <= i <= 2


lis = [] #2で区切られた各区間に関して (0の数,1の数) を入れていく

allzero = 0 #0の総数
allone = 0  #1の総数

zero = 0
one = 0

for i in A:
    if i == 0:
        zero += 1
        allzero += 1
    elif i == 1:
        one += 1
        allone += 1
    elif zero + one > 0:
        lis.append( (zero,one) )
        zero = 0
        one = 0

if zero + one > 0:
    lis.append( (zero,one) )

M = allzero + allone

#ちょうど allzero 個入る区間の組み合わせのうち、
#oneの数の総和が最小の区間の組み合わせを求めればよい

dp = [float("inf")] * (allzero + 1)
dp[0] = 0

for nz,no in lis:

    for i in range(allzero-(nz+no),-1,-1):
        dp[i + (nz+no)] = min(dp[i + (nz+no)] , dp[i] + no)

if dp[-1] == float("inf"):
    print (-1)
else:
    print (dp[-1])
0