結果

問題 No.1606 Stuffed Animals Keeper
ユーザー H3PO4H3PO4
提出日時 2021-07-16 22:22:21
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 462 ms / 3,000 ms
コード長 571 bytes
コンパイル時間 196 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 44,464 KB
最終ジャッジ日時 2024-07-06 09:47:25
合計ジャッジ時間 24,380 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 417 ms
43,956 KB
testcase_01 AC 419 ms
43,828 KB
testcase_02 AC 419 ms
44,092 KB
testcase_03 AC 430 ms
44,212 KB
testcase_04 AC 434 ms
44,204 KB
testcase_05 AC 421 ms
43,952 KB
testcase_06 AC 423 ms
43,868 KB
testcase_07 AC 427 ms
44,336 KB
testcase_08 AC 426 ms
44,340 KB
testcase_09 AC 422 ms
44,084 KB
testcase_10 AC 418 ms
43,960 KB
testcase_11 AC 418 ms
44,076 KB
testcase_12 AC 422 ms
44,376 KB
testcase_13 AC 420 ms
44,344 KB
testcase_14 AC 418 ms
44,084 KB
testcase_15 AC 417 ms
43,824 KB
testcase_16 AC 432 ms
44,340 KB
testcase_17 AC 433 ms
44,080 KB
testcase_18 AC 438 ms
43,948 KB
testcase_19 AC 432 ms
44,092 KB
testcase_20 AC 436 ms
44,216 KB
testcase_21 AC 424 ms
44,208 KB
testcase_22 AC 421 ms
44,080 KB
testcase_23 AC 447 ms
44,000 KB
testcase_24 AC 421 ms
44,332 KB
testcase_25 AC 420 ms
44,216 KB
testcase_26 AC 420 ms
43,948 KB
testcase_27 AC 419 ms
44,208 KB
testcase_28 AC 419 ms
44,204 KB
testcase_29 AC 419 ms
44,004 KB
testcase_30 AC 417 ms
44,344 KB
testcase_31 AC 417 ms
44,212 KB
testcase_32 AC 418 ms
43,952 KB
testcase_33 AC 417 ms
44,220 KB
testcase_34 AC 417 ms
44,464 KB
testcase_35 AC 417 ms
44,208 KB
testcase_36 AC 419 ms
43,952 KB
testcase_37 AC 419 ms
44,208 KB
testcase_38 AC 418 ms
44,336 KB
testcase_39 AC 417 ms
44,216 KB
testcase_40 AC 418 ms
43,956 KB
testcase_41 AC 420 ms
44,208 KB
testcase_42 AC 417 ms
43,820 KB
testcase_43 AC 444 ms
44,344 KB
testcase_44 AC 443 ms
43,952 KB
testcase_45 AC 462 ms
43,964 KB
testcase_46 AC 443 ms
44,084 KB
testcase_47 AC 444 ms
43,948 KB
testcase_48 AC 415 ms
43,956 KB
testcase_49 AC 418 ms
44,088 KB
testcase_50 AC 424 ms
43,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

N = int(input())
A = tuple(map(int, input().split()))
INF = 10000

c, h = 0, 0  # 肉食, 草食
dp = np.full(N + 1, INF)
dp[0] = 0
for i in range(N + 1):
    if i == N or A[i] == 2:
        if c == h == 0:
            continue
        new_dp = dp + c  # 草食に揃える
        new_dp[c + h:] = np.minimum(new_dp[c + h:], dp[:-c - h] + h)  # 肉食に揃える
        dp = new_dp
        c, h = 0, 0
    elif A[i] == 0:
        c += 1
    elif A[i] == 1:
        h += 1
res = dp[A.count(0)]
if res >= INF:
    print(-1)
else:
    print(res // 2)
0