代码拉取完成,页面将自动刷新
// write your code here cpp
//判断棋子有没有五颗连起来 *表示黑子;+表示白子
#include<iostream>
#include<string>
#include<vector>
using namespace std;
int Sum(vector<string>& map, int x, int y, char ch) {
int dir[4][2][2] = { {{0,-1},{0,1}},{{-1,0},{1,0}},{{1,-1},{-1,1}},{{-1,-1},{1,1}} };
int res = 0;
for (int i = 0; i < 4; i++) {
int count = 0;
for (int j = 0; j < 2; j++) {
int nx = x;
int ny = y;
while (nx >= 0 && nx < 20 && ny >= 0 && ny < 20 && map[nx][ny] == ch) {
count++;
nx = nx + dir[i][j][0];
ny = ny + dir[i][j][1];
}
}
res = max(res, count);
}
return res - 1;
}
bool Sov(vector<string>& map) {
for (int i = 0; i < 20; i++) {
for (int j = 0; j < 20; j++) {
if (map[i][j] == '*' || map[i][j] == '+') {
if (Sum(map, i, j, map[i][j]) >= 5) {
return true;
}
}
}
}
return false;
}
int main() {
string str;
while (cin >> str) {
vector<string> map(20);
map[0] = str;
for (int i = 1; i < 20; i++) {
cin >> map[i];
}
cout << (Sov(map) ? "Yes" : "No") << endl;
}
return 0;
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。