結果

問題 No.1606 Stuffed Animals Keeper
ユーザー NoneNone
提出日時 2021-10-04 04:51:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 98 ms / 3,000 ms
コード長 475 bytes
コンパイル時間 304 ms
コンパイル使用メモリ 82,924 KB
実行使用メモリ 68,992 KB
最終ジャッジ日時 2024-07-22 03:13:21
合計ジャッジ時間 5,565 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,968 KB
testcase_01 AC 41 ms
52,096 KB
testcase_02 AC 40 ms
51,840 KB
testcase_03 AC 83 ms
67,712 KB
testcase_04 AC 92 ms
68,224 KB
testcase_05 AC 64 ms
65,664 KB
testcase_06 AC 70 ms
65,920 KB
testcase_07 AC 79 ms
67,840 KB
testcase_08 AC 78 ms
67,712 KB
testcase_09 AC 66 ms
65,792 KB
testcase_10 AC 62 ms
65,024 KB
testcase_11 AC 59 ms
64,512 KB
testcase_12 AC 70 ms
67,200 KB
testcase_13 AC 47 ms
60,416 KB
testcase_14 AC 45 ms
59,904 KB
testcase_15 AC 53 ms
63,488 KB
testcase_16 AC 96 ms
68,224 KB
testcase_17 AC 96 ms
67,968 KB
testcase_18 AC 98 ms
68,992 KB
testcase_19 AC 96 ms
68,972 KB
testcase_20 AC 91 ms
68,096 KB
testcase_21 AC 66 ms
65,664 KB
testcase_22 AC 65 ms
66,432 KB
testcase_23 AC 69 ms
68,096 KB
testcase_24 AC 67 ms
67,072 KB
testcase_25 AC 63 ms
65,792 KB
testcase_26 AC 64 ms
67,328 KB
testcase_27 AC 69 ms
67,840 KB
testcase_28 AC 65 ms
67,712 KB
testcase_29 AC 64 ms
67,200 KB
testcase_30 AC 64 ms
67,072 KB
testcase_31 AC 63 ms
66,944 KB
testcase_32 AC 55 ms
64,256 KB
testcase_33 AC 61 ms
66,048 KB
testcase_34 AC 55 ms
63,360 KB
testcase_35 AC 60 ms
65,792 KB
testcase_36 AC 63 ms
67,072 KB
testcase_37 AC 62 ms
66,560 KB
testcase_38 AC 60 ms
66,304 KB
testcase_39 AC 54 ms
62,720 KB
testcase_40 AC 54 ms
63,300 KB
testcase_41 AC 52 ms
62,464 KB
testcase_42 AC 53 ms
62,720 KB
testcase_43 AC 90 ms
68,096 KB
testcase_44 AC 87 ms
67,840 KB
testcase_45 AC 85 ms
66,944 KB
testcase_46 AC 84 ms
67,840 KB
testcase_47 AC 85 ms
67,416 KB
testcase_48 AC 40 ms
51,840 KB
testcase_49 AC 40 ms
52,480 KB
testcase_50 AC 42 ms
52,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int, input().split()))
A0,A1=[0],[0]
for a in A:
    if a==0:
        A0[-1]+=1
    elif a==1:
        A1[-1]+=1
    else:
        A0.append(0)
        A1.append(0)
C0=sum(A0)
INF=10**9
dp=[INF]*(C0+1)
dp[0]=0
for a0,a1 in zip(A0,A1):
    for c in range(C0+1)[::-1]:
        if c-(a0+a1)>=0 and dp[c-(a0+a1)]<INF:
            dp[c]=min(dp[c-(a0+a1)]+a1,dp[c]+a0)
        elif dp[c]<INF:
            dp[c]+=a0


print(dp[-1]//2 if dp[-1]<INF else -1)
0