A14882 | Marin and Photoshoot
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
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 $2$ cosplayers, the number of males does not exceed the number of females (obviously).
Currently, the line has $n$ cosplayers which can be described by a binary string $s$ . The $i$ -th cosplayer is male if $s_i = 0$ and female if $s_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?
For the group picture, the cosplayers form a horizontal line. A group picture is considered beautiful if for every contiguous segment of at least $2$ cosplayers, the number of males does not exceed the number of females (obviously).
Currently, the line has $n$ cosplayers which can be described by a binary string $s$ . The $i$ -th cosplayer is male if $s_i = 0$ and female if $s_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 $t$ ( $1 \leq t \leq 10^3$ ) — the number of test cases.
The first line of each test case contains a positive integer $n$ ( $1 \leq n \leq 100$ ) — the number of cosplayers in the initial line.
The second line of each test case contains a binary string $s$ of length $n$ — 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 $n$ .
The first line of each test case contains a positive integer $n$ ( $1 \leq n \leq 100$ ) — the number of cosplayers in the initial line.
The second line of each test case contains a binary string $s$ of length $n$ — 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 $n$ .
输出格式
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, $000 \rightarrow 0110110$ .
In the third test case, you can invite one female cosplayer to stand next to the second cosplayer. Then, $010 \rightarrow 0110$ .
In the third test case, you can invite one female cosplayer to stand next to the second cosplayer. Then, $010 \rightarrow 0110$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted