Chybeta

CodeTrain(2)棋子翻转

题目

在4x4的棋盘上摆满了黑白棋子,黑白两色的位置和数目随机其中左上角坐标为(1,1),右下角坐标为(4,4),现在依次有一些翻转操作,要对一些给定支点坐标为中心的上下左右四个棋子的颜色进行翻转,请计算出翻转后的棋盘颜色。给定两个数组A和f,分别为初始棋盘和翻转位置。其中翻转位置共有3个。请返回翻转后的棋盘。

测试样例:[[0,0,1,1],[1,0,1,0],[0,1,1,0],[0,0,1,0]],[[2,2],[3,3],[4,4]]
返回:[[0,1,1,1],[0,0,1,0],[0,1,1,0],[0,0,1,0]]

解法

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
class Flip {
public:
vector<vector<int> > flipChess(vector<vector<int> > A, vector<vector<int> > f) {
int numOfRotate = 3;
int temp;
int i,j;
for (temp = 0;temp < numOfRotate;temp++){
int x = f[temp][0] - 1;
int y = f[temp][1] - 1;
if ((y - 1) >= 0)
A[x][y - 1]++;
if ((y + 1) <= 3)
A[x][y + 1]++;
if ((x - 1) >= 0)
A[x - 1][y]++;
if ((x + 1) <= 3)
A[x+1][y]++;
}
for (i = 0;i < 4;i++)
for (j = 0;j < 4;j++)
A[i][j] = A[i][j]%2;
return A;
}
};
微信扫码加入知识星球【漏洞百出】
chybeta WeChat Pay

点击图片放大,扫码知识星球【漏洞百出】