#P15712. [JAG 2023 Summer Camp #2] Fraises dans une boîte
[JAG 2023 Summer Camp #2] Fraises dans une boîte
题目描述
A box is divided into grids with rows and columns. Some squares contain strawberries.
The state of the box is denoted by , and means that the square in the -th row and -th column contains one strawberry. If , the square in the -th row and -th column is empty.
Tomoe devised the following method to distinguish between these strawberries.
- Let be defined as the sum of for all integer pairs satisfying .
- Let be defined as the sum of for all integer pairs satisfying .
- If the square in the -th row and -th column contains a strawberry, label the strawberry with the tuple .
This method could result in multiple strawberries having the same label, and the strawberries could not be distinguished. Therefore, she decided to add some strawberries before labeling them.
More formally, for such that , we operated any number of times greater than .
What is the minimum number of strawberries that must be added to label all the strawberries differently?
输入格式
$$\begin{aligned} &H \ W \\ &S_{1,1} \ S_{1,2} \ \ldots \ S_{1,W} \\ &S_{2,1} \ S_{2,2} \ \ldots \ S_{2,W} \\ &\vdots \\ &S_{H,1} \ S_{H,2} \ \ldots \ S_{H,W} \end{aligned} $$The input satisfies the following constraints.
- All inputs consist of integers.
输出格式
Output the answer in one line. Add a new line at the end of the output.
3 2
1 0
0 1
0 1
1
4 4
0 1 1 1
1 1 1 0
1 0 1 1
1 0 1 0
2
5 5
0 0 1 0 1
0 1 0 1 0
0 0 1 0 1
0 1 0 1 0
0 0 1 0 1
8
1 1
0
0
提示
In Sample Input 1, Tomoe can achieve the condition by placing a strawberry in the upper right square.