import heapq def min_operations_to_good_string(S): N = len(S) ones = S.count('1') 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: heapq.heappush(blocks, -length) else: i += 1 def count_bad(blocks): return sum((l-1)*l//2 for l in blocks) block_lengths = [-x for x in blocks] bad_substrings = sum((l-1)*l//2 for l in block_lengths) ops = 0 while bad_substrings >= ones and blocks: largest = -heapq.heappop(blocks) if largest - 1 >= 2: heapq.heappush(blocks, -(largest-1)) block_lengths = [-x for x in blocks] bad_substrings = sum((l-1)*l//2 for l in block_lengths) ones += 1 ops += 1 return ops if __name__ == "__main__": N = int(input()) S = input().strip() print(min_operations_to_good_string(S))