結果

問題 No.1606 Stuffed Animals Keeper
ユーザー roarisroaris
提出日時 2021-07-16 23:24:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,141 ms / 3,000 ms
コード長 698 bytes
コンパイル時間 288 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 99,360 KB
最終ジャッジ日時 2024-07-06 11:01:08
合計ジャッジ時間 14,769 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,096 KB
testcase_01 AC 32 ms
51,840 KB
testcase_02 AC 32 ms
52,480 KB
testcase_03 AC 458 ms
90,240 KB
testcase_04 AC 530 ms
93,568 KB
testcase_05 AC 169 ms
79,764 KB
testcase_06 AC 249 ms
82,972 KB
testcase_07 AC 394 ms
88,524 KB
testcase_08 AC 369 ms
87,180 KB
testcase_09 AC 203 ms
81,232 KB
testcase_10 AC 151 ms
79,028 KB
testcase_11 AC 110 ms
78,080 KB
testcase_12 AC 232 ms
82,432 KB
testcase_13 AC 47 ms
66,560 KB
testcase_14 AC 39 ms
59,776 KB
testcase_15 AC 65 ms
76,900 KB
testcase_16 AC 680 ms
98,560 KB
testcase_17 AC 714 ms
98,708 KB
testcase_18 AC 701 ms
99,360 KB
testcase_19 AC 703 ms
98,816 KB
testcase_20 AC 664 ms
98,560 KB
testcase_21 AC 170 ms
80,092 KB
testcase_22 AC 160 ms
79,288 KB
testcase_23 AC 163 ms
79,884 KB
testcase_24 AC 169 ms
79,616 KB
testcase_25 AC 164 ms
79,104 KB
testcase_26 AC 101 ms
76,928 KB
testcase_27 AC 105 ms
77,556 KB
testcase_28 AC 101 ms
77,664 KB
testcase_29 AC 103 ms
77,716 KB
testcase_30 AC 95 ms
76,928 KB
testcase_31 AC 89 ms
77,056 KB
testcase_32 AC 68 ms
75,904 KB
testcase_33 AC 84 ms
76,480 KB
testcase_34 AC 68 ms
76,136 KB
testcase_35 AC 84 ms
76,800 KB
testcase_36 AC 87 ms
76,928 KB
testcase_37 AC 82 ms
76,596 KB
testcase_38 AC 85 ms
76,672 KB
testcase_39 AC 68 ms
75,904 KB
testcase_40 AC 69 ms
76,800 KB
testcase_41 AC 63 ms
75,904 KB
testcase_42 AC 67 ms
76,196 KB
testcase_43 AC 709 ms
99,328 KB
testcase_44 AC 674 ms
98,176 KB
testcase_45 AC 650 ms
98,448 KB
testcase_46 AC 791 ms
98,048 KB
testcase_47 AC 1,141 ms
99,088 KB
testcase_48 AC 36 ms
52,224 KB
testcase_49 AC 36 ms
51,712 KB
testcase_50 AC 34 ms
52,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N = int(input())
A = list(map(int, input().split()))
l = []
niku, sou = 0, 0

for i in range(N):
    if A[i]==0:
        niku += 1
    elif A[i]==1:
        sou += 1
    else:
        l.append((niku, sou))
        niku, sou = 0, 0

l.append((niku, sou))
niku_S = A.count(0)
dp = [[10**18]*(niku_S+1) for _ in range(len(l)+1)]
dp[0][0] = 0

for i in range(len(l)):
    for j in range(niku_S+1):
        dp[i+1][j] = min(dp[i+1][j], dp[i][j]+l[i][0])
        
        if j+sum(l[i])<=niku_S:
            dp[i+1][j+sum(l[i])] = min(dp[i+1][j+sum(l[i])], dp[i][j]+l[i][1])

if dp[-1][-1]==10**18:
    print(-1)
else:
    ans = dp[len(l)][niku_S]//2
    print(ans)
0