A13623 | Prefix Flip (Hard Version)
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
This is the hard version of the problem. The difference between the versions is the constraint on $n$ and the required number of operations. You can make hacks only if all versions of the problem are solved.
There are two binary strings $a$ and $b$ of length $n$ (a binary string is a string consisting of symbols $0$ and $1$ ). In an operation, you select a prefix of $a$ , and simultaneously invert the bits in the prefix ( $0$ changes to $1$ and $1$ changes to $0$ ) and reverse the order of the bits in the prefix.
For example, if $a=001011$ and you select the prefix of length $3$ , it becomes $011011$ . Then if you select the entire string, it becomes $001001$ .
Your task is to transform the string $a$ into $b$ in at most $2n$ operations. It can be proved that it is always possible.
There are two binary strings $a$ and $b$ of length $n$ (a binary string is a string consisting of symbols $0$ and $1$ ). In an operation, you select a prefix of $a$ , and simultaneously invert the bits in the prefix ( $0$ changes to $1$ and $1$ changes to $0$ ) and reverse the order of the bits in the prefix.
For example, if $a=001011$ and you select the prefix of length $3$ , it becomes $011011$ . Then if you select the entire string, it becomes $001001$ .
Your task is to transform the string $a$ into $b$ in at most $2n$ operations. It can be proved that it is always possible.
输入格式
The first line contains a single integer $t$ ( $1\le t\le 1000$ ) — the number of test cases. Next $3t$ lines contain descriptions of test cases.
The first line of each test case contains a single integer $n$ ( $1\le n\le 10^5$ ) — the length of the binary strings.
The next two lines contain two binary strings $a$ and $b$ of length $n$ .
It is guaranteed that the sum of $n$ across all test cases does not exceed $10^5$ .
The first line of each test case contains a single integer $n$ ( $1\le n\le 10^5$ ) — the length of the binary strings.
The next two lines contain two binary strings $a$ and $b$ of length $n$ .
It is guaranteed that the sum of $n$ across all test cases does not exceed $10^5$ .
输出格式
For each test case, output an integer $k$ ( $0\le k\le 2n$ ), followed by $k$ integers $p_1,\ldots,p_k$ ( $1\le p_i\le n$ ). Here $k$ is the number of operations you use and $p_i$ is the length of the prefix you flip in the $i$ -th operation.
输入输出样例
输入 #1
5 2 01 10 5 01011 11100 2 01 01 10 0110011011 1000110100 1 0 1
输出 #1
3 1 2 1 6 5 2 5 3 1 2 0 9 4 1 2 10 4 1 2 1 5 1 1
In the first test case, we have $01\to 11\to 00\to 10$ .
In the second test case, we have $01011\to 00101\to 11101\to 01000\to 10100\to 00100\to 11100$ .
In the third test case, the strings are already the same. Another solution is to flip the prefix of length $2$ , which will leave $a$ unchanged.
In the second test case, we have $01011\to 00101\to 11101\to 01000\to 10100\to 00100\to 11100$ .
In the third test case, the strings are already the same. Another solution is to flip the prefix of length $2$ , which will leave $a$ unchanged.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted