A13953 | Binary Table (Hard Version)
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
This is the hard version of the problem. The difference between the versions is in the number of possible operations that can be made. You can make hacks if and only if you solved both versions of the problem.
You are given a binary table of size $n \times m$ . This table consists of symbols $0$ and $1$ .
You can make such operation: select $3$ different cells that belong to one $2 \times 2$ square and change the symbols in these cells (change $0$ to $1$ and $1$ to $0$ ).
Your task is to make all symbols in the table equal to $0$ . You are allowed to make at most $nm$ operations. You don't need to minimize the number of operations.
It can be proved, that it is always possible.
You are given a binary table of size $n \times m$ . This table consists of symbols $0$ and $1$ .
You can make such operation: select $3$ different cells that belong to one $2 \times 2$ square and change the symbols in these cells (change $0$ to $1$ and $1$ to $0$ ).
Your task is to make all symbols in the table equal to $0$ . You are allowed to make at most $nm$ operations. You don't need to minimize the number of operations.
It can be proved, that it is always possible.
输入格式
The first line contains a single integer $t$ ( $1 \leq t \leq 5000$ ) — the number of test cases. The next lines contain descriptions of test cases.
The first line of the description of each test case contains two integers $n$ , $m$ ( $2 \leq n, m \leq 100$ ).
Each of the next $n$ lines contains a binary string of length $m$ , describing the symbols of the next row of the table.
It is guaranteed, that the sum of $nm$ for all test cases does not exceed $20000$ .
The first line of the description of each test case contains two integers $n$ , $m$ ( $2 \leq n, m \leq 100$ ).
Each of the next $n$ lines contains a binary string of length $m$ , describing the symbols of the next row of the table.
It is guaranteed, that the sum of $nm$ for all test cases does not exceed $20000$ .
输出格式
For each test case print the integer $k$ ( $0 \leq k \leq nm$ ) — the number of operations.
In the each of the next $k$ lines print $6$ integers $x_1, y_1, x_2, y_2, x_3, y_3$ ( $1 \leq x_1, x_2, x_3 \leq n, 1 \leq y_1, y_2, y_3 \leq m$ ) describing the next operation. This operation will be made with three cells $(x_1, y_1)$ , $(x_2, y_2)$ , $(x_3, y_3)$ . These three cells should be different. These three cells should belong to some $2 \times 2$ square.
In the each of the next $k$ lines print $6$ integers $x_1, y_1, x_2, y_2, x_3, y_3$ ( $1 \leq x_1, x_2, x_3 \leq n, 1 \leq y_1, y_2, y_3 \leq m$ ) describing the next operation. This operation will be made with three cells $(x_1, y_1)$ , $(x_2, y_2)$ , $(x_3, y_3)$ . These three cells should be different. These three cells should belong to some $2 \times 2$ square.
输入输出样例
输入 #1
5 2 2 10 11 3 3 011 101 110 4 4 1111 0110 0110 1111 5 5 01011 11001 00010 11011 10000 2 3 011 101
输出 #1
1 1 1 2 1 2 2 2 2 1 3 1 3 2 1 2 1 3 2 3 4 1 1 1 2 2 2 1 3 1 4 2 3 3 2 4 1 4 2 3 3 4 3 4 4 4 1 2 2 1 2 2 1 4 1 5 2 5 4 1 4 2 5 1 4 4 4 5 3 4 2 1 3 2 2 2 3 1 2 2 1 2 2
In the first test case, it is possible to make only one operation with cells $(1, 1)$ , $(2, 1)$ , $(2, 2)$ . After that, all symbols will be equal to $0$ .
In the second test case:
- operation with cells $(2, 1)$ , $(3, 1)$ , $(3, 2)$ . After it the table will be: ```
<pre class="verbatim"><br></br>011<br></br>001<br></br>000<br></br>
```
- operation with cells $(1, 2)$ , $(1, 3)$ , $(2, 3)$ . After it the table will be: ```
<pre class="verbatim"><br></br>000<br></br>000<br></br>000<br></br>
```
In the fifth test case:
- operation with cells $(1, 3)$ , $(2, 2)$ , $(2, 3)$ . After it the table will be: ```
<pre class="verbatim"><br></br>010<br></br>110<br></br>
```
- operation with cells $(1, 2)$ , $(2, 1)$ , $(2, 2)$ . After it the table will be: ```
<pre class="verbatim"><br></br>000<br></br>000<br></br>
```
In the second test case:
- operation with cells $(2, 1)$ , $(3, 1)$ , $(3, 2)$ . After it the table will be: ```
<pre class="verbatim"><br></br>011<br></br>001<br></br>000<br></br>
```
- operation with cells $(1, 2)$ , $(1, 3)$ , $(2, 3)$ . After it the table will be: ```
<pre class="verbatim"><br></br>000<br></br>000<br></br>000<br></br>
```
In the fifth test case:
- operation with cells $(1, 3)$ , $(2, 2)$ , $(2, 3)$ . After it the table will be: ```
<pre class="verbatim"><br></br>010<br></br>110<br></br>
```
- operation with cells $(1, 2)$ , $(2, 1)$ , $(2, 2)$ . After it the table will be: ```
<pre class="verbatim"><br></br>000<br></br>000<br></br>
```
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted