POJ 1753 Flip Game

http://poj.org/problem?id=1753

1.反转奇数次效果相同,偶数次效果也相同,因此等价于每个棋子翻转0或1次即可

2.使用DFS按照反转个数进行枚举即可。

#include <iostream>
#include <string.h>
#include <stdio.h>

using namespace std;

int chess[7][7];
int x[5] = {0,0,1,0,-1};
int y[5] = {0,1,0,-1,0};
int flag, step;
int judge()
{
      for(int i = 1; i <= 4; i++)
            for(int j = 1; j <= 4; j++)
                  if(chess[i][j] != chess[1][1])
                        return 0;
      return 1;
}

void flip(int row,  int col)
{
    for(int i = 0; i <= 4; i++) {
        if(chess[row+x[i]][col+y[i]] == 1)      chess[row+x[i]][col+y[i]] = 0;
        else      chess[row+x[i]][col+y[i]] = 1;
      }
      return;
}

void dfs(int row,int col, int deep)
{
      if(deep == step) {
            flag = judge();
            return;
      }
      if(flag || row == 5)    return;
      flip(row,col);
      if(col < 4)  dfs(row,col+1,deep+1);
      else  dfs(row+1,1,deep+1);
      flip(row,col);
      if(col < 4)       dfs(row,col+1,deep);
      else  dfs(row+1,1,deep);
      return;
}

int main()
{
//      freopen("in.txt", "r", stdin);
      char temp;
      memset(chess,0,sizeof(chess));
      for(int i = 1; i <= 4; i++)
            for(int j = 1; j <= 4; j++) {
                  cin >>temp;
                  if(temp == 'b')
                        chess[i][j] = 1;
            }
      for(step = 0; step <= 16; step++) {
            dfs(1,1,0);
            if(flag)
                  break;
      }
      if(flag)
            cout<<step<<endl;
      else
            cout<<"Impossible"<<endl;
      return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值