結果

問題 No.3114 0→1
ユーザー takanami
提出日時 2025-04-20 04:55:36
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 772 bytes
コンパイル時間 347 ms
コンパイル使用メモリ 12,160 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2025-04-20 04:55:39
合計ジャッジ時間 2,941 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1 WA * 2
other WA * 30
権限があれば一括ダウンロードができます

ソースコード

diff #

def min_operations_to_good_string(S):
    N = len(S)
    ones = S.count('1')
    zero_blocks = []
    i = 0

    while i < N:
        if S[i] == '0':
            start = i
            while i < N and S[i] == '0':
                i += 1
            length = i - start
            if length >= 2:
                zero_blocks.append(length)
        else:
            i += 1

    num_blocks = len(zero_blocks)
    if num_blocks < ones:
        return 0

    zero_blocks.sort(reverse=True)
    ops = 0

    for length in zero_blocks:
        ops += 1
        num_blocks -= 1
        ones += 1
        if num_blocks < ones:
            return ops
    return ops

if __name__ == "__main__":
    N = int(input())
    S = input().strip()
    print(min_operations_to_good_string(S))
0