結果

問題 No.1606 Stuffed Animals Keeper
ユーザー 👑 KazunKazun
提出日時 2021-07-16 22:16:40
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 594 bytes
コンパイル時間 218 ms
コンパイル使用メモリ 82,388 KB
実行使用メモリ 66,700 KB
最終ジャッジ日時 2024-07-06 09:36:28
合計ジャッジ時間 4,115 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,736 KB
testcase_01 AC 37 ms
52,492 KB
testcase_02 AC 39 ms
51,940 KB
testcase_03 WA -
testcase_04 AC 61 ms
65,812 KB
testcase_05 AC 49 ms
63,080 KB
testcase_06 WA -
testcase_07 AC 58 ms
66,396 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 50 ms
64,232 KB
testcase_11 AC 47 ms
60,964 KB
testcase_12 WA -
testcase_13 AC 44 ms
61,752 KB
testcase_14 AC 43 ms
60,932 KB
testcase_15 AC 46 ms
61,988 KB
testcase_16 AC 61 ms
66,628 KB
testcase_17 WA -
testcase_18 AC 62 ms
66,408 KB
testcase_19 AC 64 ms
66,700 KB
testcase_20 AC 61 ms
65,484 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 49 ms
62,820 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 44 ms
60,968 KB
testcase_33 WA -
testcase_34 AC 43 ms
60,720 KB
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 AC 43 ms
61,608 KB
testcase_40 AC 43 ms
60,936 KB
testcase_41 AC 44 ms
61,920 KB
testcase_42 AC 45 ms
62,784 KB
testcase_43 AC 65 ms
65,440 KB
testcase_44 AC 59 ms
62,508 KB
testcase_45 AC 58 ms
63,372 KB
testcase_46 AC 60 ms
62,748 KB
testcase_47 AC 59 ms
64,208 KB
testcase_48 AC 38 ms
51,876 KB
testcase_49 AC 38 ms
52,740 KB
testcase_50 AC 38 ms
53,924 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
for a in A:
    if a==0:
        p+=1
    elif a==1:
        q+=1
    else:
        Y.append((p,q))
        p=q=0

K=0
for p,q in Y:
    K+=min(p,q)

print(K//2)
0