結果

問題 No.1606 Stuffed Animals Keeper
ユーザー tonyu0tonyu0
提出日時 2022-09-21 16:15:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 456 ms / 3,000 ms
コード長 744 bytes
コンパイル時間 295 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 314,752 KB
最終ジャッジ日時 2024-06-01 17:25:19
合計ジャッジ時間 9,375 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,352 KB
testcase_01 AC 40 ms
51,840 KB
testcase_02 AC 40 ms
51,840 KB
testcase_03 AC 260 ms
173,696 KB
testcase_04 AC 291 ms
196,088 KB
testcase_05 AC 101 ms
87,808 KB
testcase_06 AC 136 ms
107,008 KB
testcase_07 AC 215 ms
151,144 KB
testcase_08 AC 206 ms
151,108 KB
testcase_09 AC 126 ms
105,984 KB
testcase_10 AC 94 ms
85,888 KB
testcase_11 AC 67 ms
74,240 KB
testcase_12 AC 135 ms
106,616 KB
testcase_13 AC 46 ms
61,176 KB
testcase_14 AC 48 ms
61,056 KB
testcase_15 AC 42 ms
59,776 KB
testcase_16 AC 349 ms
241,588 KB
testcase_17 AC 362 ms
241,920 KB
testcase_18 AC 368 ms
241,536 KB
testcase_19 AC 354 ms
242,084 KB
testcase_20 AC 359 ms
242,176 KB
testcase_21 AC 103 ms
89,600 KB
testcase_22 AC 100 ms
87,844 KB
testcase_23 AC 100 ms
88,352 KB
testcase_24 AC 100 ms
89,232 KB
testcase_25 AC 101 ms
88,776 KB
testcase_26 AC 66 ms
72,960 KB
testcase_27 AC 66 ms
73,696 KB
testcase_28 AC 66 ms
72,320 KB
testcase_29 AC 71 ms
74,112 KB
testcase_30 AC 64 ms
71,936 KB
testcase_31 AC 61 ms
70,656 KB
testcase_32 AC 50 ms
63,232 KB
testcase_33 AC 58 ms
68,352 KB
testcase_34 AC 53 ms
64,384 KB
testcase_35 AC 61 ms
68,992 KB
testcase_36 AC 60 ms
68,992 KB
testcase_37 AC 58 ms
68,480 KB
testcase_38 AC 59 ms
67,968 KB
testcase_39 AC 51 ms
64,512 KB
testcase_40 AC 51 ms
64,000 KB
testcase_41 AC 47 ms
62,080 KB
testcase_42 AC 48 ms
62,080 KB
testcase_43 AC 456 ms
314,408 KB
testcase_44 AC 449 ms
314,552 KB
testcase_45 AC 455 ms
314,348 KB
testcase_46 AC 451 ms
314,576 KB
testcase_47 AC 449 ms
314,752 KB
testcase_48 AC 38 ms
51,840 KB
testcase_49 AC 37 ms
52,352 KB
testcase_50 AC 39 ms
52,352 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:
            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