Problem Description
Yu Zhou likes to play Go with Su Lu. From the historical research, we found that there are much difference on the rules between ancient go and modern go. Here is the rules for ancient go they were playing: ⋅The game is played on a × cell board, the chess can be put on the intersection of the board lines, so there are × different positions to put the chess.
⋅Yu Zhou always takes the black and Su Lu the white. They put the chess onto the game board alternately.
⋅The chess of the same color makes connected components(connected by the board lines), for each of the components, if it's not connected with any of the empty cells, this component dies and will be removed from the game board.
⋅When one of the player makes his move, check the opponent's components first. After removing the dead opponent's components, check with the player's components and remove the dead components.
One day, Yu Zhou was playing ancient go with Su Lu at home. It's Yu Zhou's move now. But they had to go for an emergency military action. Little Qiao looked at the game board and would like to know whether Yu Zhou has a move to kill at least one of Su Lu's chess. Input
The first line of the input gives the number of test cases, T(≤T≤). T test cases follow. Test cases are separated by an empty line. Each test case consist of lines represent the game board. Each line consists of characters. Each character represents a cell on the game board. ′.′ represents an empty cell. ′x′ represents a cell with black chess which owned by Yu Zhou. ′o′ represents a cell with white chess which owned by Su Lu. Output
For each test case, output one line containing Case #x: y, where x is the test case number (starting from ) and y is Can kill in one move!!! if Yu Zhou has a move to kill at least one of Su Lu's components. Can not kill in one move!!! otherwise. Sample Input .......xo
.........
.........
..x......
.xox....x
.o.o...xo
..o......
.....xxxo
....xooo. ......ox.
.......o.
...o.....
..o.o....
...o.....
.........
.......o.
...x.....
........o Sample Output
Case #: Can kill in one move!!!
Case #: Can not kill in one move!!!
Hint In the first test case, Yu Zhou has different ways to kill Su Lu's component. In the second test case, there is no way to kill Su Lu's component.

题意 在.出放一个黑棋X能包围白棋o,只能放一个黑棋

方法 搜索白棋四周有几个空白点如果小于等于1就可以

#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>
#include <stack>
#include <queue>
#include <vector>
using namespace std;
#define N 200
#define met(a,b) memset(a,b,sizeof(a));
vector<vector<int> >Q;
char str[N][N];
int dis[][]= {{,},{,},{-,},{,-}};
int vis[N][N];
int pan(int x,int y)
{
return (x>= && x< && y>= && y<);
}
int dfs(int x,int y)
{
vis[x][y]=;int f=;
for(int i=; i<; i++)
{
int xx = x+dis[i][];
int yy = y+dis[i][];
if(vis[xx][yy] || !pan(xx,yy))///搜过的和坐垫不符合的跳过
continue;
if(str[xx][yy]=='.')///有一个累加
{
f++;
vis[xx][yy]=;
}
if(str[xx][yy]=='o')///四周白棋的四周的空白点个数
f+=dfs(xx,yy);
}
return f;
}
int sove()
{
for(int i=; i<; i++)
{
for(int j=; j<; j++)
{
if(str[i][j]=='o') ///找到一个白棋搜索
{
met(vis,);
int ans=dfs(i,j);
if(ans<=)
return ;
}
}
}
return ;
}
int main()
{
int t,con=;
scanf("%d",&t);
while(t--)
{
for(int i=; i<; i++)
scanf("%s",str[i]); int ans=sove();
if(ans)
printf("Case #%d: Can kill in one move!!!\n",con++);
else
printf("Case #%d: Can not kill in one move!!!\n",con++);
}
return ;
}

最新文章

  1. Linux下ps命令详解 Linux下ps命令的详细使用方法
  2. SVN Server for Migration
  3. linq in not in
  4. hihoCoder 1427 : What a Simple Research(大㵘研究)
  5. java经典算法40题(21-40)
  6. UVA 12532 Interval Product
  7. laravel5 centos6.4下的配置体验
  8. 思考之spring的ioc
  9. 用HtmlLink来改变网站的主题
  10. python+matplotlib+web.py
  11. 分布式事务的典型处理方式:2PC、TCC、异步确保和最大努力型
  12. js函数式编程术语总结 - 持续更新
  13. JavaScript or JQuery 获取服务器时间
  14. dp的斜率优化
  15. because its MIME type (&#39;text/html&#39;) is not executable, and strict MIME type checking is enabled
  16. 20165213 java学习第一周
  17. 补间动画Tweened Animations
  18. 分享一个ASP.NET的弹出层,比较好用!
  19. tomcat异常 Socket bind failed: [730048]
  20. arm架构与体系结构

热门文章

  1. POJ1838
  2. Oracle10g/11g 在SUSE/RHEL上的安装与配置
  3. sql server 分布式事务
  4. iOS网络编程(三) 异步加载及缓存图片----&gt;SDWebImage
  5. Android核心基础(四)
  6. [四]JFreeChart实践三之饼图
  7. Activity 的启动模式
  8. Integer Inquiry_hdu_1047(大数).java
  9. Android Studio 完美修改应用包名
  10. 自己动手写CPU之第七阶段(7)——乘累加指令的实现