結果

問題 No.1606 Stuffed Animals Keeper
ユーザー titiatitia
提出日時 2021-07-17 18:57:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 98 ms / 3,000 ms
コード長 618 bytes
コンパイル時間 245 ms
コンパイル使用メモリ 82,184 KB
実行使用メモリ 76,912 KB
最終ジャッジ日時 2024-07-07 06:05:49
合計ジャッジ時間 4,462 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
57,776 KB
testcase_01 AC 36 ms
58,836 KB
testcase_02 AC 34 ms
59,696 KB
testcase_03 AC 81 ms
76,348 KB
testcase_04 AC 86 ms
76,208 KB
testcase_05 AC 65 ms
76,220 KB
testcase_06 AC 66 ms
76,588 KB
testcase_07 AC 77 ms
76,240 KB
testcase_08 AC 74 ms
75,952 KB
testcase_09 AC 63 ms
76,228 KB
testcase_10 AC 58 ms
75,760 KB
testcase_11 AC 51 ms
73,272 KB
testcase_12 AC 67 ms
76,216 KB
testcase_13 AC 37 ms
59,900 KB
testcase_14 AC 36 ms
60,440 KB
testcase_15 AC 35 ms
62,068 KB
testcase_16 AC 94 ms
76,512 KB
testcase_17 AC 92 ms
76,468 KB
testcase_18 AC 95 ms
76,672 KB
testcase_19 AC 94 ms
76,436 KB
testcase_20 AC 92 ms
76,192 KB
testcase_21 AC 54 ms
70,908 KB
testcase_22 AC 53 ms
70,596 KB
testcase_23 AC 53 ms
72,436 KB
testcase_24 AC 55 ms
72,008 KB
testcase_25 AC 53 ms
72,348 KB
testcase_26 AC 46 ms
66,532 KB
testcase_27 AC 46 ms
67,156 KB
testcase_28 AC 46 ms
65,952 KB
testcase_29 AC 46 ms
66,784 KB
testcase_30 AC 45 ms
66,620 KB
testcase_31 AC 45 ms
64,408 KB
testcase_32 AC 38 ms
62,624 KB
testcase_33 AC 44 ms
64,956 KB
testcase_34 AC 41 ms
64,612 KB
testcase_35 AC 45 ms
65,332 KB
testcase_36 AC 45 ms
64,356 KB
testcase_37 AC 45 ms
64,620 KB
testcase_38 AC 44 ms
63,796 KB
testcase_39 AC 40 ms
62,908 KB
testcase_40 AC 40 ms
64,264 KB
testcase_41 AC 40 ms
61,536 KB
testcase_42 AC 39 ms
61,676 KB
testcase_43 AC 98 ms
76,912 KB
testcase_44 AC 95 ms
76,316 KB
testcase_45 AC 96 ms
76,820 KB
testcase_46 AC 93 ms
76,716 KB
testcase_47 AC 94 ms
76,732 KB
testcase_48 AC 34 ms
58,200 KB
testcase_49 AC 33 ms
58,040 KB
testcase_50 AC 30 ms
53,684 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N=int(input())
A=list(map(int,input().split()))

X=[[0,0]]

for a in A:
    if a==0:
        X[-1][0]+=1
    elif a==1:
        X[-1][1]+=1
    else:
        X.append([0,0])

Y=[]
zeros=0
for x,y in X:
    if x==0 and y==0:
        continue
    zeros+=x
    Y.append([x,y])

DP=[1<<32]*5001
DP[0]=0

for x,y in Y:
    NDP=[1<<32]*5001
    
    for i in range(5000,-1,-1):
        if DP[i]==1<<32:
            continue
        NDP[i+x+y]=min(NDP[i+x+y],DP[i]+y)
        NDP[i]=min(NDP[i],DP[i]+x)

    DP=NDP

if DP[zeros]==1<<32:
    print(-1)
else:
    print(DP[zeros]//2)
    
0