Tic-Tac-Toe

Tic-Tac-Toe

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
inputCopy

... ... ...
... ... ...
... ... ...

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

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

output

... ... ... 
... ... ... 
... ... ... 

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

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

inputCopy

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!! 
!!! !!! !!! 
!!! !!! !!! 

inputCopy

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.

题意
这道题看的我一脸懵,第一英文很长,第二翻译软件翻译的不准,导致根本就不知道这道题在说什么,其实是这样的,给你一个上图所示的图,通过给你的两个数,找到整个图里面的某一点,然后在那个点属于的小3*3的正方形中,找到对应的大正方形的某一个区域
1.如果那个区域有 . 则把这个区域所有的 . 变成 如样例1
2.如果那个区域没有一个 . 则把整个图里面的 . 变成 ! 例如样例2、3

代码

#include <iostream>

using namespace std;

string str[9][3];
int n,m,tn,tm;
void init()//输入
{
    for(int i = 0; i < 9; i++)
    {
        for(int j = 0; j < 3; j++)
        {
            cin>>str[i][j];
        }
    }
    cin>>n>>m;
    tn = n%3;
    tm = m%3;
    if(tn == 0)
    {
        tn = 3;
    }
    if(tm == 0)
    {
        tm = 3;
    }
}

bool judge()//判断是哪一种情况,分两种
{
    for(int i = tn*3-3; i <tn*3; i++)
    {
        for(int j = 0; j < 3; j++)
        {
            if(str[i][tm-1][j] == '.')
            {
                return true;
            }
        }
    }
    return false;
}

void print()//输出
{
    for(int i = 0; i < 9; i++)
    {
        for(int j = 0; j < 3; j++)
        {
            cout << str[i][j] << " ";
        }
        cout << endl;
        if(i==2 || i == 5)
        {
            cout << endl;
        }
    }
}


int main()
{
    init();

    if(judge())//只改变一小部分
    {
        for(int i = tn*3-3; i <tn*3; i++)
        {
            for(int j = 0; j < 3; j++)
            {
                if(str[i][tm-1][j] == '.')
                {
                    str[i][tm-1][j] = '!';
                }
            }
        }
    }
    else//改变所有
    {
        for(int i = 0; i < 9; i++)
        {
            for(int j = 0; j < 3; j++)
            {
                for(int k = 0; k < 3; k++)
                {
                    if(str[i][j][k] == '.')
                    {
                        str[i][j][k] = '!';
                    }
                }
            }
        }
    }
    print();
    return 0;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值