【深夜写题解之人【如有脑子不清,尽请见谅哈哈哈
大致题意:
给你一个4*4的棋盘,给你白黑棋子的初始状态,一次操作就会翻这颗棋子上下左右的4颗,问你几步可以把它们翻成一种颜色。
然后tle一次,impossible输出加了个句号wa一两
。暴力枚举dfs搜索 297ms过得。。
就是暴力。。看代码的解释了。
ps discuss区又说可以bfs+位运算,不会,待研究;
pps 还说可以高斯消元【-一-脸–懵-逼—–,更待研究。
#include<iostream>
#include<cstdio>
#include<algorithm>
using namespace std;
bool chess[6][6]={0};
bool jy = 0;
int step;
char c;
int xx[5] = {-1, 0, 0, 0, 1};
int yy[5] = {0, -1, 0, 1, 0};
bool judge(){ // 判断所有格子是否已经翻成一个颜色
for(int i=1;i<=4;i++)
{
for(int j=1;j<=4;j++)
{
if(chess[i][j]!=chess[1][1])
return false;
}
}
return true;
}
void flip(int a, int b) // 翻动点(a,b)时附近的点的颜色
{
for(int i = 0; i < 5; i ++)
{
if(chess[a+xx[i]][b+yy[i]] == 0)
{
chess[a+xx[i]][b+yy[i]]=1;
}
else
chess[a+xx[i]][b+yy[i]] = 0;
}
}
void dfs(int a, int b, int s){// 点(a,b)为现在是否要操作
if(s == step){
jy = judge();
return;
}
if(jy || a == 5) //边界条件
return;
flip(a, b); // 要对点(row,col)进行翻动。
if(b < 4) dfs(a,b+1,s+1);
else dfs(a+1,1,s+1);
flip(a,b); // 不对点(row,col)进行翻动。(也就是再翻一次翻回原来,但是步数不增加)
if(b<4) dfs(a,b+1,s);
else dfs(a+1,1,s);
}
int main(){
for(int i = 1; i <= 4; i ++)
for(int j = 1; j <= 4; j ++){
cin >>c;
if(c == 'b') chess[i][j]=1;
}
for(step = 0; step <= 16; step ++){ // 枚举0 ~ 16 步。
dfs(1, 1, 0);
if(jy) break;
}
if(jy)
cout << step << endl;
else
cout << "Impossible"<<endl ;//注意输出输出输出
return 0;
}
就是这样。
ps
明天又是新的,把每天活的更漂亮嗯、@忧郁大叔S。。。。。
chase your life.