A14543 | MAX-MEX Cut
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
A binary string is a string that consists of characters $0$ and $1$ . A bi-table is a table that has exactly two rows of equal length, each being a binary string.
Let $\operatorname{MEX}$ of a bi-table be the smallest digit among $0$ , $1$ , or $2$ that does not occur in the bi-table. For example, $\operatorname{MEX}$ for $\begin{bmatrix} 0011\\ 1010 \end{bmatrix}$ is $2$ , because $0$ and $1$ occur in the bi-table at least once. $\operatorname{MEX}$ for $\begin{bmatrix} 111\\ 111 \end{bmatrix}$ is $0$ , because $0$ and $2$ do not occur in the bi-table, and $0 < 2$ .
You are given a bi-table with $n$ columns. You should cut it into any number of bi-tables (each consisting of consecutive columns) so that each column is in exactly one bi-table. It is possible to cut the bi-table into a single bi-table — the whole bi-table.
What is the maximal sum of $\operatorname{MEX}$ of all resulting bi-tables can be?
Let $\operatorname{MEX}$ of a bi-table be the smallest digit among $0$ , $1$ , or $2$ that does not occur in the bi-table. For example, $\operatorname{MEX}$ for $\begin{bmatrix} 0011\\ 1010 \end{bmatrix}$ is $2$ , because $0$ and $1$ occur in the bi-table at least once. $\operatorname{MEX}$ for $\begin{bmatrix} 111\\ 111 \end{bmatrix}$ is $0$ , because $0$ and $2$ do not occur in the bi-table, and $0 < 2$ .
You are given a bi-table with $n$ columns. You should cut it into any number of bi-tables (each consisting of consecutive columns) so that each column is in exactly one bi-table. It is possible to cut the bi-table into a single bi-table — the whole bi-table.
What is the maximal sum of $\operatorname{MEX}$ of all resulting bi-tables 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.
The first line of the description of each test case contains a single integer $n$ ( $1 \le n \le 10^5$ ) — the number of columns in the bi-table.
Each of the next two lines contains a binary string of length $n$ — the rows of the bi-table.
It's guaranteed that the sum of $n$ over all test cases does not exceed $10^5$ .
The first line of the description of each test case contains a single integer $n$ ( $1 \le n \le 10^5$ ) — the number of columns in the bi-table.
Each of the next two lines contains a binary string of length $n$ — the rows of the bi-table.
It's guaranteed that the sum of $n$ over all test cases does not exceed $10^5$ .
输出格式
For each test case print a single integer — the maximal sum of $\operatorname{MEX}$ of all bi-tables that it is possible to get by cutting the given bi-table optimally.
输入输出样例
输入 #1
4 7 0101000 1101100 5 01100 10101 2 01 01 6 000000 111111
输出 #1
8 8 2 12
In the first test case you can cut the bi-table as follows:
- $\begin{bmatrix} 0\\ 1 \end{bmatrix}$ , its $\operatorname{MEX}$ is $2$ .
- $\begin{bmatrix} 10\\ 10 \end{bmatrix}$ , its $\operatorname{MEX}$ is $2$ .
- $\begin{bmatrix} 1\\ 1 \end{bmatrix}$ , its $\operatorname{MEX}$ is $0$ .
- $\begin{bmatrix} 0\\ 1 \end{bmatrix}$ , its $\operatorname{MEX}$ is $2$ .
- $\begin{bmatrix} 0\\ 0 \end{bmatrix}$ , its $\operatorname{MEX}$ is $1$ .
- $\begin{bmatrix} 0\\ 0 \end{bmatrix}$ , its $\operatorname{MEX}$ is $1$ .
The sum of $\operatorname{MEX}$ is $8$ .
- $\begin{bmatrix} 0\\ 1 \end{bmatrix}$ , its $\operatorname{MEX}$ is $2$ .
- $\begin{bmatrix} 10\\ 10 \end{bmatrix}$ , its $\operatorname{MEX}$ is $2$ .
- $\begin{bmatrix} 1\\ 1 \end{bmatrix}$ , its $\operatorname{MEX}$ is $0$ .
- $\begin{bmatrix} 0\\ 1 \end{bmatrix}$ , its $\operatorname{MEX}$ is $2$ .
- $\begin{bmatrix} 0\\ 0 \end{bmatrix}$ , its $\operatorname{MEX}$ is $1$ .
- $\begin{bmatrix} 0\\ 0 \end{bmatrix}$ , its $\operatorname{MEX}$ is $1$ .
The sum of $\operatorname{MEX}$ is $8$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted