A14544 | MIN-MEX Cut
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
A binary string is a string that consists of characters $0$ and $1$ .
Let $\operatorname{MEX}$ of a binary string be the smallest digit among $0$ , $1$ , or $2$ that does not occur in the string. For example, $\operatorname{MEX}$ of $001011$ is $2$ , because $0$ and $1$ occur in the string at least once, $\operatorname{MEX}$ of $1111$ is $0$ , because $0$ and $2$ do not occur in the string and $0 < 2$ .
A binary string $s$ is given. You should cut it into any number of substrings such that each character is in exactly one substring. It is possible to cut the string into a single substring — the whole string.
A string $a$ is a substring of a string $b$ if $a$ can be obtained from $b$ by deletion of several (possibly, zero or all) characters from the beginning and several (possibly, zero or all) characters from the end.
What is the minimal sum of $\operatorname{MEX}$ of all substrings pieces can be?
Let $\operatorname{MEX}$ of a binary string be the smallest digit among $0$ , $1$ , or $2$ that does not occur in the string. For example, $\operatorname{MEX}$ of $001011$ is $2$ , because $0$ and $1$ occur in the string at least once, $\operatorname{MEX}$ of $1111$ is $0$ , because $0$ and $2$ do not occur in the string and $0 < 2$ .
A binary string $s$ is given. You should cut it into any number of substrings such that each character is in exactly one substring. It is possible to cut the string into a single substring — the whole string.
A string $a$ is a substring of a string $b$ if $a$ can be obtained from $b$ by deletion of several (possibly, zero or all) characters from the beginning and several (possibly, zero or all) characters from the end.
What is the minimal sum of $\operatorname{MEX}$ of all substrings pieces can be?
输入格式
The input consists of multiple test cases. The first line contains a single integer $t$ ( $1 \le t \le 10^4$ ) — the number of test cases. Description of the test cases follows.
Each test case contains a single binary string $s$ ( $1 \le |s| \le 10^5$ ).
It's guaranteed that the sum of lengths of $s$ over all test cases does not exceed $10^5$ .
Each test case contains a single binary string $s$ ( $1 \le |s| \le 10^5$ ).
It's guaranteed that the sum of lengths of $s$ over all test cases does not exceed $10^5$ .
输出格式
For each test case print a single integer — the minimal sum of $\operatorname{MEX}$ of all substrings that it is possible to get by cutting $s$ optimally.
输入输出样例
输入 #1
6 01 1111 01100 101 0000 01010
输出 #1
1 0 2 1 1 2
In the first test case the minimal sum is $\operatorname{MEX}(0) + \operatorname{MEX}(1) = 1 + 0 = 1$ .
In the second test case the minimal sum is $\operatorname{MEX}(1111) = 0$ .
In the third test case the minimal sum is $\operatorname{MEX}(01100) = 2$ .
In the second test case the minimal sum is $\operatorname{MEX}(1111) = 0$ .
In the third test case the minimal sum is $\operatorname{MEX}(01100) = 2$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted