結果

問題 No.1606 Stuffed Animals Keeper
ユーザー tassei903tassei903
提出日時 2021-07-16 22:32:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 148 ms / 3,000 ms
コード長 917 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 86,656 KB
最終ジャッジ日時 2024-07-06 10:00:26
合計ジャッジ時間 5,021 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,352 KB
testcase_01 AC 36 ms
52,352 KB
testcase_02 AC 35 ms
52,224 KB
testcase_03 AC 97 ms
84,864 KB
testcase_04 AC 111 ms
86,656 KB
testcase_05 AC 59 ms
69,120 KB
testcase_06 AC 72 ms
72,192 KB
testcase_07 AC 97 ms
83,968 KB
testcase_08 AC 91 ms
83,584 KB
testcase_09 AC 67 ms
71,680 KB
testcase_10 AC 60 ms
70,528 KB
testcase_11 AC 52 ms
67,200 KB
testcase_12 AC 68 ms
72,704 KB
testcase_13 AC 38 ms
59,656 KB
testcase_14 AC 40 ms
61,184 KB
testcase_15 AC 36 ms
59,520 KB
testcase_16 AC 119 ms
85,888 KB
testcase_17 AC 133 ms
85,376 KB
testcase_18 AC 125 ms
86,016 KB
testcase_19 AC 126 ms
86,016 KB
testcase_20 AC 121 ms
85,760 KB
testcase_21 AC 64 ms
70,784 KB
testcase_22 AC 66 ms
71,680 KB
testcase_23 AC 72 ms
73,728 KB
testcase_24 AC 65 ms
71,680 KB
testcase_25 AC 64 ms
70,784 KB
testcase_26 AC 57 ms
70,400 KB
testcase_27 AC 61 ms
70,272 KB
testcase_28 AC 59 ms
69,504 KB
testcase_29 AC 59 ms
69,632 KB
testcase_30 AC 60 ms
69,248 KB
testcase_31 AC 60 ms
68,608 KB
testcase_32 AC 48 ms
63,744 KB
testcase_33 AC 53 ms
67,584 KB
testcase_34 AC 52 ms
64,384 KB
testcase_35 AC 58 ms
68,608 KB
testcase_36 AC 54 ms
68,352 KB
testcase_37 AC 54 ms
68,096 KB
testcase_38 AC 55 ms
68,096 KB
testcase_39 AC 48 ms
64,128 KB
testcase_40 AC 47 ms
64,512 KB
testcase_41 AC 42 ms
61,952 KB
testcase_42 AC 42 ms
61,952 KB
testcase_43 AC 131 ms
86,144 KB
testcase_44 AC 133 ms
85,952 KB
testcase_45 AC 132 ms
86,144 KB
testcase_46 AC 148 ms
85,632 KB
testcase_47 AC 143 ms
86,016 KB
testcase_48 AC 34 ms
51,968 KB
testcase_49 AC 33 ms
51,712 KB
testcase_50 AC 32 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
sys.setrecursionlimit(10**7)
yes = lambda :print("yes");Yes = lambda :print("Yes")
no = lambda :print("no");No = lambda :print("No")
#################################################
n = ni()
a = na()+[2]
A = []
B = []
x,y = 0,0
for i in range(n+1):
    if a[i]==2:
        if x==0 and y==0:continue
        A.append(x)
        B.append(y)
        x = 0
        y = 0
    elif a[i]==0:
        x+=1
    else:
        y+=1
S = sum(B)
N = len(A)
AB = [A[i]+B[i] for i in range(N)]
inf = 10**15
dp = [[inf for j in range(S+1)]for i in range(N+1)]
dp[0][0] = 0
for i in range(N):
    for j in range(S+1):
        if j-AB[i]>=0:
            dp[i+1][j] = min(dp[i+1][j],dp[i][j-AB[i]]+A[i])
        dp[i+1][j] = min(dp[i+1][j],dp[i][j])

if dp[-1][-1]==inf:
    print(-1)
else:
    print(dp[-1][-1])
0