結果

問題 No.2299 Antitypoglycemia
ユーザー LyricalMaestroLyricalMaestro
提出日時 2024-11-02 20:06:13
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 1,615 bytes
コンパイル時間 417 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 67,536 KB
最終ジャッジ日時 2024-11-02 20:06:17
合計ジャッジ時間 3,716 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

## https://yukicoder.me/problems/no/1606


def main():
    N = int(input())
    A = list(map(int, input().split()))

    intervals = []
    prev = 2
    for a in A:
        if a != 2:
            if len(intervals) == 0:
                array = [0, 0]
                array[a] = 1
                intervals.append(array)
            else:
                if prev != 2:
                    intervals[-1][a] += 1
                else:
                    array = [0, 0]
                    array[a] = 1
                    intervals.append(array)
        prev = a

    value = 0    
    a1_value = 0
    for a0, a1 in intervals:
        value += a0 + a1
        a1_value += a1
    if a1_value == 0 or ( value - a1_value) == 0:
        print(0)
        return

        
    dp = [float("inf") for _ in range(value + 1)]
    dp[0] = 0

    for a0, a1 in intervals:
        new_dp = [float("inf") for _ in range(value + 1)]
        total = a0 + a1
        for i in range(value + 1):
            # そのまま
            new_dp[i] = min(new_dp[i], dp[i])

            # 加える
            if i + total <= value:
                new_dp[i + total] = min(new_dp[i + total], dp[i] + a0)
        dp = new_dp

    answer = float("inf")
    for total in range(value + 1):
        if dp[total] == float("inf"):
            continue

        a0 = dp[total]
        a1 = total - a0

        # 相手側
        a = a1_value - a1
        if a0 == a:
            answer = min(answer, a0)
    if answer == float("inf"):
        print(-1)
    else:
        print(answer)




                


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