当前位置: 代码迷 >> 综合 >> Codeforces Round #682 (Div. 2) C. Engineer Artem(思维)
  详细解决方案

Codeforces Round #682 (Div. 2) C. Engineer Artem(思维)

热度:74   发布时间:2023-12-21 00:11:21.0

题目链接:https://codeforc.es/contest/1438/problem/C

Artem is building a new robot. He has a matrix a consisting of n rows and m columns. The cell located on the i-th row from the top and the j-th column from the left has a value ai,j written in it.

If two adjacent cells contain the same value, the robot will break. A matrix is called good if no two adjacent cells contain the same value, where two cells are called adjacent if they share a side.

Artem wants to increment the values in some cells by one to make a good.

More formally, find a good matrix b that satisfies the following condition —

For all valid (i,j), either bi,j=ai,j or bi,j=ai,j+1.
For the constraints of this problem, it can be shown that such a matrix b always exists. If there are several such tables, you can output any of them. Please note that you do not have to minimize the number of increments.

Input
Each test contains multiple test cases. The first line contains the number of test cases t (1≤t≤10). Description of the test cases follows.

The first line of each test case contains two integers n,m (1≤n≤100, 1≤m≤100) — the number of rows and columns, respectively.

The following n lines each contain m integers. The j-th integer in the i-th line is ai,j (1≤ai,j≤109).

Output
For each case, output n lines each containing m integers. The j-th integer in the i-th line is bi,j.

Example

input

3
3 2
1 2
4 5
7 8
2 2
1 1
3 3
2 2
1 3
2 2

output

1 2
5 6
7 8
2 1
4 3
2 4
3 2

题意

给出一个 n * m 的矩阵,你需要将他变成一个没有一对相邻位置相等的矩阵,对于每一个位置,你最多可以使其 +1 。

分析

可以在 (i + j) 为偶数的位置使 a[i][j] 变为偶数,在 (i + j) 为奇数的位置使 a[i][j] 变为奇数,这样相邻两个位置必不相等。

代码
#include<bits/stdc++.h>
using namespace std;int t;
int n,m;
int a[107][107];int main()
{
    scanf("%d",&t);while(t--){
    scanf("%d%d",&n,&m);for(int i=1;i<=n;i++)for(int j=1;j<=m;j++){
    scanf("%d",&a[i][j]);if(a[i][j] % 2 == 0 && (i + j) % 2 != 0) a[i][j]++;if(a[i][j] % 2 != 0 && (i + j) % 2 == 0) a[i][j]++;}for(int i=1;i<=n;i++){
    for(int j=1;j<=m;j++) printf("%d ",a[i][j]);printf("\n");}}return 0;
}
  相关解决方案