飞行员兄弟 DFS+枚举
Posted karshey
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了飞行员兄弟 DFS+枚举相关的知识,希望对你有一定的参考价值。
一个DFS枚举的模板题。
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<int,int> pii;
#define pb push_back
#define fi first
#define se second
#define mem(a,x) memset(a,x,sizeof(a));
#define db double
//======================
const int N=1e5+10;
char mp[5][5],bp[5][5];
vector<pii>ans,temp;
void change(int x,int y)
{
if(mp[x][y]=='+') mp[x][y]='-';
else mp[x][y]='+';
}
void turn(int x,int y)
{
// temp.pb({x,y});
change(x,y);
for(int i=1;i<=4;i++) change(x,i);
for(int i=1;i<=4;i++) change(i,y);
}
void dfs(int x,int y)
{
if(x==4&&y==5)
{
int flag=1;
for(int i=1;i<=4;i++)
{
for(int j=1;j<=4;j++)
{
if(mp[i][j]=='+') //没法打开了
{
flag=0;
goto end;
}
}
}
end:
if(flag)
{
if(ans.empty()||(temp.size()&&temp.size()<ans.size()))
//有且优
{
ans=temp;
}
}
return;
}
if(y==5) x++,y=1;
// memcpy(bp,mp,sizeof(mp));//back up
//按
turn(x,y);
temp.pb({x,y});
dfs(x,y+1);
turn(x,y);//back up
temp.pop_back();
//不按
dfs(x,y+1);
}
int main()
{
for(int i=1;i<=4;i++)
{
for(int j=1;j<=4;j++)
{
cin>>mp[i][j];
}
}
dfs(1,1);
cout<<ans.size()<<endl;
for(int i=0;i<ans.size();i++)
{
cout<<ans[i].fi<<" "<<ans[i].se<<endl;
}
return 0;
}
以上是关于飞行员兄弟 DFS+枚举的主要内容,如果未能解决你的问题,请参考以下文章