The 2015 China Collegiate Programming Contest G. Ancient Go hdu 5546

Ancient Go

Time Limit: 3000/1000 MS (Java/Others)    Memory Limit: 65535/65535 K (Java/Others)
Total Submission(s): 577    Accepted Submission(s): 213


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 8×8 cell board, the chess can be put on the intersection of the board lines, so there are 9×9 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(1T100)T test cases follow. Test cases are separated by an empty line. Each test case consist of 9 lines represent the game board. Each line consists of 9 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 1) 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
2 .......xo ......... ......... ..x...... .xox....x .o.o...xo ..o...... .....xxxo ....xooo. ......ox. .......o. ...o..... ..o.o.... ...o..... ......... .......o. ...x..... ........o
 

 

Sample Output
Case #1: Can kill in one move!!! Case #2: Can not kill in one move!!!
Hint
In the first test case, Yu Zhou has 4 different ways to kill Su Lu's component. In the second test case, there is no way to kill Su Lu's component.
 
题意:问围棋,下一步能不能吃掉子
分析:暴力。
 
 1 #include <iostream>
 2 #include <cstdio>
 3 using namespace std;
 4 
 5 const int n = 9;
 6 const int dx[] = {-1, 0, 1, 0}, dy[] = {0, -1, 0, 1};
 7 int map[n][n];
 8 int visit[n][n], flagcnt;
 9 
10 inline bool Check(int x, int y)
11 {
12     if(x < 0 || x >= n || y < 0 || y >= n) return 0;
13     return 1;
14 }
15 
16 inline bool Search(int x, int y)
17 {
18     if(map[x][y] == 0) return 1;
19     if(map[x][y] == 2) return 0;
20     visit[x][y] = flagcnt;
21     for(int k = 0; k < 4; k++)
22     {
23         int tx = x + dx[k], ty = y + dy[k];
24         if(Check(tx, ty) && visit[tx][ty] != flagcnt)
25         {
26             if(Search(tx, ty))
27                 return 1;
28         }
29     }
30     return 0;
31 }
32 
33 inline void Solve()
34 {
35     for(int i = 0; i < 9; i++)
36         for(int j = 0; j < 9; j++)
37         {
38             char ch = ' ';
39             while(ch != '.' && ch != 'x' && ch != 'o') ch = getchar();
40             if(ch == '.') map[i][j] = 0;
41             else if(ch == 'o') map[i][j] = 1;
42             else if(ch == 'x') map[i][j] = 2;
43         }
44     
45     for(int i = 0; i< 9; i++)
46         for(int j = 0; j < 9; j++)
47             if(map[i][j] == 0)
48             {
49                 map[i][j] = 2;
50                 for(int k = 0; k < 4; k++)
51                 {
52                     int x = i + dx[k], y = j + dy[k];
53                     if(Check(x, y) && map[x][y] == 1)
54                     {
55                         ++flagcnt;
56                         if(!Search(x, y))
57                         {
58                             printf("Can kill in one move!!!\n");
59                             return;
60                         }
61                     }
62                 }
63                 map[i][j] = 0;
64             }
65     printf("Can not kill in one move!!!\n");
66 }
67 
68 int main()
69 {
70     int test;
71     scanf("%d", &test);
72     for(int testnumber = 1; testnumber <= test; testnumber++)
73     {
74         printf("Case #%d: ", testnumber);
75         Solve();
76     }
77     return 0;
78 }
View Code

 

转载于:https://www.cnblogs.com/StupidBoy/p/5068106.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值