結果

問題 No.1606 Stuffed Animals Keeper
ユーザー 👑 KazunKazun
提出日時 2021-07-16 22:38:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 101 ms / 3,000 ms
コード長 729 bytes
コンパイル時間 189 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 71,040 KB
最終ジャッジ日時 2024-07-06 10:07:59
合計ジャッジ時間 4,142 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,096 KB
testcase_01 AC 34 ms
51,712 KB
testcase_02 AC 34 ms
52,152 KB
testcase_03 AC 77 ms
69,888 KB
testcase_04 AC 82 ms
69,376 KB
testcase_05 AC 59 ms
67,328 KB
testcase_06 AC 63 ms
67,968 KB
testcase_07 AC 76 ms
69,888 KB
testcase_08 AC 75 ms
69,632 KB
testcase_09 AC 61 ms
68,224 KB
testcase_10 AC 57 ms
67,072 KB
testcase_11 AC 52 ms
65,280 KB
testcase_12 AC 65 ms
68,608 KB
testcase_13 AC 38 ms
60,288 KB
testcase_14 AC 38 ms
60,032 KB
testcase_15 AC 42 ms
62,592 KB
testcase_16 AC 85 ms
71,040 KB
testcase_17 AC 93 ms
70,528 KB
testcase_18 AC 89 ms
70,656 KB
testcase_19 AC 101 ms
70,784 KB
testcase_20 AC 88 ms
70,016 KB
testcase_21 AC 59 ms
67,328 KB
testcase_22 AC 59 ms
67,200 KB
testcase_23 AC 65 ms
69,120 KB
testcase_24 AC 61 ms
67,948 KB
testcase_25 AC 59 ms
67,200 KB
testcase_26 AC 56 ms
67,712 KB
testcase_27 AC 56 ms
68,224 KB
testcase_28 AC 55 ms
67,200 KB
testcase_29 AC 54 ms
66,688 KB
testcase_30 AC 56 ms
67,456 KB
testcase_31 AC 56 ms
68,096 KB
testcase_32 AC 40 ms
60,288 KB
testcase_33 AC 55 ms
66,304 KB
testcase_34 AC 40 ms
60,416 KB
testcase_35 AC 53 ms
66,688 KB
testcase_36 AC 53 ms
66,944 KB
testcase_37 AC 53 ms
67,200 KB
testcase_38 AC 53 ms
67,072 KB
testcase_39 AC 38 ms
60,800 KB
testcase_40 AC 38 ms
60,544 KB
testcase_41 AC 41 ms
62,080 KB
testcase_42 AC 41 ms
61,696 KB
testcase_43 AC 82 ms
68,608 KB
testcase_44 AC 52 ms
62,720 KB
testcase_45 AC 52 ms
62,080 KB
testcase_46 AC 51 ms
62,336 KB
testcase_47 AC 52 ms
62,592 KB
testcase_48 AC 32 ms
52,096 KB
testcase_49 AC 32 ms
51,968 KB
testcase_50 AC 31 ms
52,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#=================================================
N=int(input())
A=list(map(int,input().split()))+[2]

#===
P=A.count(0)
Q=A.count(1)

#=== 可能どうかの判定
X=[]
x=0
for a in A:
    if a!=2:
        x+=1
    else:
        if x:
            X.append(x)
        x=0

DP=[0]*(P+1); DP[0]=1
for x in X:
    for k in range(P,x-1,-1):
        DP[k]|=DP[k-x]

if DP[P]==0:
    exit(print(-1))

#=== 回数を求める
Y=[]

p=q=0
p_sum=0
for a in A:
    if a==0:
        p+=1
        p_sum+=1
    elif a==1:
        q+=1
    else:
        Y.append((p,q))
        p=q=0

inf=float("inf")
DP=[inf]*(p_sum+1); DP[0]=0

for p,q in Y:
    r=p+q
    for k in range(p_sum,r-1,-1):
        DP[k]=min(DP[k],DP[k-r]+q)

print(DP[p_sum])
0