CF1658A.Marin and Photoshoot

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Today, Marin is at a cosplay exhibition and is preparing for a group photoshoot!

For the group picture, the cosplayers form a horizontal line. A group picture is considered beautiful if for every contiguous segment of at least 22 cosplayers, the number of males does not exceed the number of females (obviously).

Currently, the line has nn cosplayers which can be described by a binary string ss . The ii -th cosplayer is male if si=0s_i = 0 and female if si=1s_i = 1 . To ensure that the line is beautiful, you can invite some additional cosplayers (possibly zero) to join the line at any position. You can't remove any cosplayer from the line.

Marin wants to know the minimum number of cosplayers you need to invite so that the group picture of all the cosplayers is beautiful. She can't do this on her own, so she's asking you for help. Can you help her?

输入格式

The first line contains a single integer tt ( 1t1031 \leq t \leq 10^3 ) — the number of test cases.

The first line of each test case contains a positive integer nn ( 1n1001 \leq n \leq 100 ) — the number of cosplayers in the initial line.

The second line of each test case contains a binary string ss of length nn — describing the cosplayers already in line. Each character of the string is either 0 describing a male, or 1 describing a female.

Note that there is no limit on the sum of nn .

输出格式

For each test case, print the minimum number of cosplayers you need to invite so that the group picture of all the cosplayers is beautiful.

输入输出样例

  • 输入#1

    9
    3
    000
    3
    001
    3
    010
    3
    011
    3
    100
    3
    101
    3
    110
    3
    111
    19
    1010110000100000101

    输出#1

    4
    2
    1
    0
    2
    0
    0
    0
    17

说明/提示

In the first test case, for each pair of adjacent cosplayers, you can invite two female cosplayers to stand in between them. Then, 0000110110000 \rightarrow 0110110 .

In the third test case, you can invite one female cosplayer to stand next to the second cosplayer. Then, 0100110010 \rightarrow 0110 .

首页