結果

問題 No.1606 Stuffed Animals Keeper
ユーザー tamatotamato
提出日時 2021-07-16 22:52:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 86 ms / 3,000 ms
コード長 850 bytes
コンパイル時間 144 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 76,928 KB
最終ジャッジ日時 2024-07-06 10:23:49
合計ジャッジ時間 4,152 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,352 KB
testcase_01 AC 32 ms
51,840 KB
testcase_02 AC 33 ms
52,096 KB
testcase_03 AC 81 ms
76,160 KB
testcase_04 AC 78 ms
76,288 KB
testcase_05 AC 55 ms
67,328 KB
testcase_06 AC 62 ms
71,552 KB
testcase_07 AC 74 ms
76,544 KB
testcase_08 AC 72 ms
76,416 KB
testcase_09 AC 60 ms
70,656 KB
testcase_10 AC 59 ms
68,608 KB
testcase_11 AC 50 ms
65,280 KB
testcase_12 AC 62 ms
71,936 KB
testcase_13 AC 37 ms
59,392 KB
testcase_14 AC 38 ms
59,904 KB
testcase_15 AC 44 ms
64,384 KB
testcase_16 AC 81 ms
76,288 KB
testcase_17 AC 86 ms
76,544 KB
testcase_18 AC 85 ms
76,800 KB
testcase_19 AC 81 ms
76,672 KB
testcase_20 AC 81 ms
76,544 KB
testcase_21 AC 56 ms
68,864 KB
testcase_22 AC 55 ms
67,968 KB
testcase_23 AC 58 ms
70,016 KB
testcase_24 AC 55 ms
68,352 KB
testcase_25 AC 56 ms
68,352 KB
testcase_26 AC 50 ms
65,664 KB
testcase_27 AC 50 ms
65,408 KB
testcase_28 AC 50 ms
65,024 KB
testcase_29 AC 51 ms
65,024 KB
testcase_30 AC 48 ms
65,024 KB
testcase_31 AC 47 ms
64,128 KB
testcase_32 AC 41 ms
61,952 KB
testcase_33 AC 47 ms
64,256 KB
testcase_34 AC 42 ms
61,952 KB
testcase_35 AC 49 ms
65,024 KB
testcase_36 AC 48 ms
65,024 KB
testcase_37 AC 47 ms
64,384 KB
testcase_38 AC 48 ms
64,768 KB
testcase_39 AC 42 ms
61,568 KB
testcase_40 AC 42 ms
61,440 KB
testcase_41 AC 39 ms
59,776 KB
testcase_42 AC 39 ms
59,776 KB
testcase_43 AC 81 ms
76,544 KB
testcase_44 AC 82 ms
76,672 KB
testcase_45 AC 84 ms
76,416 KB
testcase_46 AC 81 ms
76,288 KB
testcase_47 AC 81 ms
76,928 KB
testcase_48 AC 33 ms
52,096 KB
testcase_49 AC 33 ms
51,840 KB
testcase_50 AC 32 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9
inf = 10**15


def main():
    import sys
    input = sys.stdin.readline

    N = int(input())
    A = list(map(int, input().split()))
    A.append(2)

    B = []
    cnt = [0, 0]
    for a in A:
        if a == 2:
            if sum(cnt):
                B.append(cnt)
                cnt = [0, 0]
        else:
            cnt[a] += 1

    S = 0
    for a, b in B:
        S += b

    dp = [inf] * (S+1)
    dp[S] = 0
    for i in range(len(B)):
        n0, n1 = B[i]
        dp_new = [inf] * (S+1)
        for j in range(S+1):
            dp_new[j] = min(dp_new[j], dp[j])
            if j - (n0 + n1) >= 0:
                dp_new[j - (n0 + n1)] = min(dp_new[j - (n0 + n1)], dp[j] + n0)
        dp = dp_new
    if dp[0] != inf:
        print(dp[0])
    else:
        print(-1)


if __name__ == '__main__':
    main()
0