結果

問題 No.1606 Stuffed Animals Keeper
ユーザー ああいいああいい
提出日時 2022-03-07 11:59:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 135 ms / 3,000 ms
コード長 712 bytes
コンパイル時間 248 ms
コンパイル使用メモリ 82,660 KB
実行使用メモリ 88,056 KB
最終ジャッジ日時 2024-07-22 05:46:30
合計ジャッジ時間 5,494 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,680 KB
testcase_01 AC 38 ms
52,464 KB
testcase_02 AC 38 ms
52,900 KB
testcase_03 AC 100 ms
85,400 KB
testcase_04 AC 110 ms
87,516 KB
testcase_05 AC 61 ms
70,708 KB
testcase_06 AC 72 ms
71,888 KB
testcase_07 AC 95 ms
84,184 KB
testcase_08 AC 91 ms
83,036 KB
testcase_09 AC 64 ms
69,828 KB
testcase_10 AC 60 ms
68,044 KB
testcase_11 AC 55 ms
66,208 KB
testcase_12 AC 72 ms
73,188 KB
testcase_13 AC 46 ms
62,864 KB
testcase_14 AC 43 ms
60,740 KB
testcase_15 AC 41 ms
60,992 KB
testcase_16 AC 117 ms
87,600 KB
testcase_17 AC 114 ms
87,556 KB
testcase_18 AC 116 ms
87,464 KB
testcase_19 AC 122 ms
87,620 KB
testcase_20 AC 117 ms
87,828 KB
testcase_21 AC 68 ms
71,976 KB
testcase_22 AC 67 ms
72,636 KB
testcase_23 AC 68 ms
72,364 KB
testcase_24 AC 68 ms
73,212 KB
testcase_25 AC 66 ms
73,516 KB
testcase_26 AC 60 ms
68,800 KB
testcase_27 AC 60 ms
70,596 KB
testcase_28 AC 61 ms
69,444 KB
testcase_29 AC 60 ms
68,240 KB
testcase_30 AC 58 ms
70,392 KB
testcase_31 AC 60 ms
68,444 KB
testcase_32 AC 54 ms
66,688 KB
testcase_33 AC 59 ms
67,060 KB
testcase_34 AC 51 ms
65,092 KB
testcase_35 AC 55 ms
68,044 KB
testcase_36 AC 58 ms
68,716 KB
testcase_37 AC 55 ms
67,460 KB
testcase_38 AC 57 ms
68,192 KB
testcase_39 AC 52 ms
65,836 KB
testcase_40 AC 54 ms
66,752 KB
testcase_41 AC 50 ms
64,924 KB
testcase_42 AC 48 ms
64,236 KB
testcase_43 AC 129 ms
87,536 KB
testcase_44 AC 127 ms
87,688 KB
testcase_45 AC 132 ms
88,056 KB
testcase_46 AC 135 ms
87,800 KB
testcase_47 AC 129 ms
88,048 KB
testcase_48 AC 36 ms
52,408 KB
testcase_49 AC 37 ms
52,760 KB
testcase_50 AC 37 ms
52,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int,input().split()))
A.insert(0,2)
A.append(2)
N += 2
l = []
left = 0
S = 0
while left < N:
    right = left + 1
    count = 0
    while right < N and A[right] != 2:
        if A[right] == 0:
            count += 1
        right += 1
    if right - left > 1:
        l.append((right- left - 1,right - left - 1 - count))
    S += count
    left = right
n = len(l)
inf = 10 ** 6
dp = [[inf] * (S+1) for _ in range(n+1)]
dp[0][0] = 0
for i in range(n):
    w,v = l[i]
    for j in range(S+1):
        dp[i+1][j] = min(dp[i+1][j],dp[i][j])
        if j + w <= S:
            dp[i+1][j+w] = min(dp[i+1][j+w],dp[i][j] + v)
if dp[-1][-1] == inf:
    print(-1)
else:
    print(dp[-1][-1])
0