結果

問題 No.1606 Stuffed Animals Keeper
ユーザー rlangevinrlangevin
提出日時 2023-04-04 08:58:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 589 ms / 3,000 ms
コード長 675 bytes
コンパイル時間 295 ms
コンパイル使用メモリ 81,712 KB
実行使用メモリ 80,000 KB
最終ジャッジ日時 2024-09-25 10:40:08
合計ジャッジ時間 9,648 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
60,672 KB
testcase_01 AC 48 ms
60,672 KB
testcase_02 AC 48 ms
60,672 KB
testcase_03 AC 248 ms
77,312 KB
testcase_04 AC 262 ms
77,440 KB
testcase_05 AC 144 ms
76,672 KB
testcase_06 AC 171 ms
76,800 KB
testcase_07 AC 220 ms
77,056 KB
testcase_08 AC 219 ms
77,056 KB
testcase_09 AC 156 ms
76,928 KB
testcase_10 AC 136 ms
76,416 KB
testcase_11 AC 106 ms
75,904 KB
testcase_12 AC 162 ms
76,844 KB
testcase_13 AC 49 ms
62,464 KB
testcase_14 AC 46 ms
62,080 KB
testcase_15 AC 589 ms
80,000 KB
testcase_16 AC 292 ms
77,968 KB
testcase_17 AC 294 ms
77,312 KB
testcase_18 AC 294 ms
77,824 KB
testcase_19 AC 292 ms
77,468 KB
testcase_20 AC 293 ms
77,568 KB
testcase_21 AC 92 ms
76,416 KB
testcase_22 AC 91 ms
75,904 KB
testcase_23 AC 93 ms
76,544 KB
testcase_24 AC 94 ms
76,416 KB
testcase_25 AC 90 ms
75,904 KB
testcase_26 AC 72 ms
72,320 KB
testcase_27 AC 70 ms
72,704 KB
testcase_28 AC 70 ms
72,192 KB
testcase_29 AC 69 ms
72,448 KB
testcase_30 AC 69 ms
71,168 KB
testcase_31 AC 74 ms
70,656 KB
testcase_32 AC 64 ms
67,328 KB
testcase_33 AC 63 ms
69,248 KB
testcase_34 AC 58 ms
67,200 KB
testcase_35 AC 63 ms
69,760 KB
testcase_36 AC 64 ms
70,272 KB
testcase_37 AC 64 ms
70,144 KB
testcase_38 AC 62 ms
68,992 KB
testcase_39 AC 58 ms
67,328 KB
testcase_40 AC 58 ms
67,328 KB
testcase_41 AC 59 ms
67,968 KB
testcase_42 AC 59 ms
68,224 KB
testcase_43 AC 275 ms
77,440 KB
testcase_44 AC 270 ms
77,532 KB
testcase_45 AC 270 ms
77,324 KB
testcase_46 AC 269 ms
77,568 KB
testcase_47 AC 271 ms
77,440 KB
testcase_48 AC 43 ms
58,500 KB
testcase_49 AC 47 ms
60,672 KB
testcase_50 AC 48 ms
60,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))
X, Y = [], []
cntX, cntY = 0, 0
for a in A:
    if a == 2:
        X.append(cntX)
        Y.append(cntY)
        cntX, cntY = 0, 0
    elif a == 0:
        cntX += 1
    else:
        cntY += 1
X.append(cntX)
Y.append(cntY)
M = len(X)
geta = 5005
inf = 10 ** 18
pre = [inf] * (2 * geta)
pre[geta] = 0
for i in range(M):
    dp = [inf] * (2 * geta)
    for j in range(2 * geta):
        if j + X[i] < 2 * geta:
            dp[j + X[i]] = min(dp[j + X[i]], pre[j] + X[i])
        if j - Y[i] >= 0:
            dp[j - Y[i]] = min(dp[j - Y[i]], pre[j])
    dp, pre = pre, dp

print(pre[geta]) if pre[geta] < inf else print(-1)
0