您的位置:首页 > 其它

B. Tic-Tac-Toe

2017-12-27 20:03 405 查看
B. Tic-Tac-Toe

time limit per test
2 seconds

memory limit per test
256 megabytes

input
standard input

output
standard output

Two bears are playing tic-tac-toe via mail. It's boring for them to play usual tic-tac-toe game, so they are a playing modified version of this game. Here are its rules.

The game is played on the following field.



Players are making moves by turns. At first move a player can put his chip in any cell of any small field. For following moves, there are some restrictions: if during last move the opposite player put his chip to cell with coordinates (xl, yl) in
some small field, the next move should be done in one of the cells of the small field with coordinates (xl, yl).
For example, if in the first move a player puts his chip to lower left cell of central field, then the second player on his next move should put his chip into some cell of lower left field (pay attention to the first test case). If there are no free cells
in the required field, the player can put his chip to any empty cell on any field.

You are given current state of the game and coordinates of cell in which the last move was done. You should find all cells in which the current player can put his chip.

A hare works as a postman in the forest, he likes to foul bears. Sometimes he changes the game field a bit, so the current state of the game could be unreachable. However, after his changes the cell where the last move was done is not empty. You don't need
to find if the state is unreachable or not, just output possible next moves according to the rules.

Input

First 11 lines contains descriptions of table with 9 rows and 9 columns which are divided into 9 small fields by spaces and empty lines. Each small field is described by 9 characters without spaces and empty lines. character "x"
(ASCII-code 120) means that the cell is occupied with chip of the first player, character "o" (ASCII-code 111) denotes a field occupied with chip of the second
player, character "." (ASCII-code 46) describes empty cell.

The line after the table contains two integers x and y (1 ≤ x, y ≤ 9).
They describe coordinates of the cell in table where the last move was done. Rows in the table are numbered from up to down and columns are numbered from left to right.

It's guaranteed that cell where the last move was done is filled with "x" or "o".
Also, it's guaranteed that there is at least one empty cell. It's not guaranteed that current state of game is reachable.

Output

Output the field in same format with characters "!" (ASCII-code 33) on positions where the current player can put his chip. All other cells should not be modified.

Examples

input
... ... ...
... ... ...
... ... ...

... ... ...
... ... ...
... x.. ...

... ... ...
... ... ...
... ... ...
6 4


output
... ... ...
... ... ...
... ... ...

... ... ...
... ... ...
... x.. ...

!!! ... ...
!!! ... ...
!!! ... ...


input
xoo x.. x..
ooo ... ...
ooo ... ...

x.. x.. x..
... ... ...
... ... ...

x.. x.. x..
... ... ...
... ... ...
7 4


output
xoo x!! x!!
ooo !!! !!!
ooo !!! !!!

x!! x!! x!!
!!! !!! !!!
!!! !!! !!!

x!! x!! x!!
!!! !!! !!!
!!! !!! !!!


input
o.. ... ...
... ... ...
... ... ...

... xxx ...
... xox ...
... ooo ...

... ... ...
... ... ...
... ... ...
5 5


output
o!! !!! !!!
!!! !!! !!!
!!! !!! !!!

!!! xxx !!!
!!! xox !!!
!!! ooo !!!

!!! !!! !!!
!!! !!! !!!
!!! !!! !!!


Note

In the first test case the first player made a move to lower left cell of central field, so the second player can put a chip only to cells of lower left field.

In the second test case the last move was done to upper left cell of lower central field, however all cells in upper left field are occupied, so the second player can put his chip to any empty cell.

In the third test case the last move was done to central cell of central field, so current player can put his chip to any cell of central field, which is already occupied, so he can move anywhere. Pay attention that this state of the game is unreachable.

给你一个九宫格, 输入x,y坐标 确定 x,y 在小九宫格的哪个位置上,对应大九宫格的位置全部赋值为‘’!‘’。若没有则全部都赋值为 ‘’!‘’。

代码:

#include <iostream>
#include <cstring>
#include <cstdio>
#include <algorithm>
#define ll long long
#define maxn 10001
using namespace std;
int main(){
char str[100][100];
for(int i=0;i<9;i++)
for(int j=0;j<9;j++)
cin>>str[i][j];
int x,y;
cin>>x>>y;
x--,y--;
x%=3;
y%=3;
x*=3;
y*=3;
int flag=0;
for(int i=x;i<x+3;i++)
for(int j=y;j<y+3;j++)
{
if(str[i][j]=='.')
{
flag=1;
str[i][j]='!';
}
}
if(!flag)
{
for(int i=0;i<9;i++)
{
for(int j=0;j<9;j++)
{
if(str[i][j]=='.')
str[i][j]='!';
}
}
}

for(int i=0;i<9;i++)
{
for(int j=0;j<9;j++)
{
cout<<str[i][j];
if(j==2||j==5)
cout<<" ";
}
if(i==2||i==5)
cout<<endl;
cout<<endl;
}
return 0;
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  ACM