結果

問題 No.3114 0→1
ユーザー takanami
提出日時 2025-04-20 04:56:48
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 595 bytes
コンパイル時間 392 ms
コンパイル使用メモリ 12,160 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2025-04-20 04:56:51
合計ジャッジ時間 3,049 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
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 = 0
    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 += 1
        else:
            i += 1

    ops = 0
    while zero_blocks >= ones:
        ops += 1
        zero_blocks -= 1
        ones += 1
    return ops

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