結果

問題 No.1606 Stuffed Animals Keeper
ユーザー tonyu0tonyu0
提出日時 2022-09-21 16:11:58
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 777 bytes
コンパイル時間 278 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 200,040 KB
最終ジャッジ日時 2024-06-01 17:24:59
合計ジャッジ時間 7,329 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,608 KB
testcase_01 AC 41 ms
52,224 KB
testcase_02 AC 41 ms
52,224 KB
testcase_03 AC 160 ms
128,384 KB
testcase_04 AC 177 ms
127,884 KB
testcase_05 AC 79 ms
81,492 KB
testcase_06 AC 96 ms
87,424 KB
testcase_07 AC 139 ms
105,996 KB
testcase_08 AC 134 ms
106,316 KB
testcase_09 AC 94 ms
85,192 KB
testcase_10 AC 77 ms
80,256 KB
testcase_11 AC 60 ms
68,608 KB
testcase_12 AC 99 ms
87,296 KB
testcase_13 AC 47 ms
60,928 KB
testcase_14 AC 47 ms
61,312 KB
testcase_15 AC 45 ms
59,520 KB
testcase_16 AC 205 ms
150,376 KB
testcase_17 AC 204 ms
150,400 KB
testcase_18 AC 208 ms
149,888 KB
testcase_19 AC 214 ms
150,352 KB
testcase_20 AC 208 ms
150,008 KB
testcase_21 AC 103 ms
88,832 KB
testcase_22 AC 101 ms
87,404 KB
testcase_23 AC 102 ms
88,448 KB
testcase_24 AC 103 ms
88,952 KB
testcase_25 AC 99 ms
87,424 KB
testcase_26 AC 68 ms
73,728 KB
testcase_27 AC 69 ms
73,856 KB
testcase_28 AC 66 ms
72,704 KB
testcase_29 AC 69 ms
74,360 KB
testcase_30 AC 68 ms
71,552 KB
testcase_31 AC 64 ms
70,272 KB
testcase_32 AC 52 ms
63,360 KB
testcase_33 AC 60 ms
68,224 KB
testcase_34 AC 56 ms
64,128 KB
testcase_35 AC 63 ms
68,992 KB
testcase_36 AC 61 ms
68,096 KB
testcase_37 AC 61 ms
68,992 KB
testcase_38 WA -
testcase_39 AC 53 ms
64,128 KB
testcase_40 AC 53 ms
64,256 KB
testcase_41 AC 50 ms
62,336 KB
testcase_42 AC 51 ms
62,720 KB
testcase_43 AC 259 ms
199,552 KB
testcase_44 AC 273 ms
199,784 KB
testcase_45 AC 259 ms
200,040 KB
testcase_46 AC 258 ms
199,424 KB
testcase_47 AC 258 ms
199,640 KB
testcase_48 AC 40 ms
52,736 KB
testcase_49 AC 40 ms
52,096 KB
testcase_50 AC 40 ms
52,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a=list(map(int, input().split()))
b=[]
L=0
O=0
alllen=0
allone=0
for i in range(n):
    if a[i] == 2:
        if L>0:
            if 0<O<L:
                b.append([L, O])
            L=0
            O=0
    else:
        alllen+=1
        L+=1
        if a[i]==1:
            allone+=1
            O+=1
if L>0:
    b.append([L, O])

m=len(b)
o=n*2+10
dp=[[1e9]*(o) for _ in range(m+1)]
dp[0][n]=0
for i in range(m):
    len, one = b[i]
    zero = len - one
    for j in range(o):
        if dp[i][j]==1e9:
            continue
        if j + one < o:
            dp[i+1][j+one] = min(dp[i+1][j+one], dp[i][j] + one)
        if j - zero >= 0:
            dp[i+1][j-zero]=min(dp[i+1][j-zero],dp[i][j])

if dp[m][n] == 1e9:
    print(-1)
else:
    print(dp[m][n])
0