結果

問題 No.1606 Stuffed Animals Keeper
ユーザー H20H20
提出日時 2023-06-15 12:54:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 516 ms / 3,000 ms
コード長 736 bytes
コンパイル時間 228 ms
コンパイル使用メモリ 82,328 KB
実行使用メモリ 81,356 KB
最終ジャッジ日時 2024-06-23 13:34:18
合計ジャッジ時間 12,220 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,188 KB
testcase_01 AC 44 ms
54,804 KB
testcase_02 AC 42 ms
54,616 KB
testcase_03 AC 367 ms
79,012 KB
testcase_04 AC 427 ms
80,360 KB
testcase_05 AC 161 ms
77,448 KB
testcase_06 AC 226 ms
78,608 KB
testcase_07 AC 338 ms
79,488 KB
testcase_08 AC 311 ms
78,544 KB
testcase_09 AC 198 ms
78,504 KB
testcase_10 AC 152 ms
77,332 KB
testcase_11 AC 120 ms
77,076 KB
testcase_12 AC 217 ms
78,112 KB
testcase_13 AC 46 ms
62,524 KB
testcase_14 AC 46 ms
62,296 KB
testcase_15 AC 45 ms
62,676 KB
testcase_16 AC 500 ms
80,736 KB
testcase_17 AC 516 ms
81,356 KB
testcase_18 AC 514 ms
80,912 KB
testcase_19 AC 512 ms
81,132 KB
testcase_20 AC 506 ms
80,764 KB
testcase_21 AC 226 ms
79,064 KB
testcase_22 AC 209 ms
78,448 KB
testcase_23 AC 218 ms
78,816 KB
testcase_24 AC 218 ms
78,784 KB
testcase_25 AC 224 ms
79,196 KB
testcase_26 AC 133 ms
77,740 KB
testcase_27 AC 135 ms
78,284 KB
testcase_28 AC 131 ms
78,020 KB
testcase_29 AC 135 ms
78,512 KB
testcase_30 AC 127 ms
77,980 KB
testcase_31 AC 117 ms
78,064 KB
testcase_32 AC 46 ms
62,540 KB
testcase_33 AC 119 ms
78,044 KB
testcase_34 AC 47 ms
63,296 KB
testcase_35 AC 122 ms
77,976 KB
testcase_36 AC 125 ms
78,184 KB
testcase_37 AC 115 ms
77,800 KB
testcase_38 AC 112 ms
78,056 KB
testcase_39 AC 48 ms
63,352 KB
testcase_40 AC 48 ms
63,836 KB
testcase_41 AC 50 ms
63,608 KB
testcase_42 AC 51 ms
63,788 KB
testcase_43 AC 380 ms
78,536 KB
testcase_44 AC 379 ms
78,600 KB
testcase_45 AC 381 ms
78,768 KB
testcase_46 AC 385 ms
78,644 KB
testcase_47 AC 386 ms
78,788 KB
testcase_48 AC 39 ms
54,164 KB
testcase_49 AC 40 ms
54,564 KB
testcase_50 AC 39 ms
55,700 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections
N = int(input())
A = list(map(int,input().split()))
ZERO = A.count(0)
ONE = A.count(1)
L = []
SEP = []
for a in A:
    if a==2:
        if len(SEP)>0:
            L.append(SEP)
            SEP = []
    else:
        SEP.append(a)
L.append(SEP)
#コストを設定
DP = collections.defaultdict(lambda:10**4)
DP[(0,0)]=0
for l in L:
    NDP = collections.defaultdict(lambda:10**4)
    CA = collections.Counter(l)
    for k,v in DP.items():
        z,o = k
        if z+len(l)<=ZERO:
            NDP[(z+len(l),o)]=min(NDP[(z+len(l),o)],v+CA[1])
        if o+len(l)<=ONE:
            NDP[(z,o+len(l))]=min(NDP[(z,o+len(l))],v+CA[0])
    DP = NDP
if DP[(ZERO,ONE)]==10**4:
    print(-1)
else:
    print(DP[(ZERO,ONE)]//2)
0