[POJ]POJ1753(dfs)

题意:给出一个4*4的01方阵,每次可以选择一个坐标,使这个坐标以及相邻坐标(如果存在)状态取反,求最少步数使得全0或全1

显然每个坐标最多选一次,枚举最小步数dfs。

#include <cstdio>
#include<iostream>
#include<algorithm> using namespace std; typedef long long int LL; #define st first #define nd second #define pb push_back #define mp make_pair #define pll pair <LL, LL> #define pii pair <int, int> #define rep(i,x) for(int i=1;i<=x;i++) const int N = 1e5+7; const int MX = 1e9+7; const LL INF = 1e18+9LL; char a[6][6]; int check(){ int x=0; rep(i,4) rep(j,4)if(a[i][j]=='b')x++; return x==16||x==0; } void make(int x,int y){ a[x][y]=(a[x][y]=='b'? 'w':'b'); a[x][y+1]=(a[x][y+1]=='b'? 'w':'b'); a[x][y-1]=(a[x][y-1]=='b'? 'w':'b'); a[x+1][y]=(a[x+1][y]=='b'? 'w':'b'); a[x-1][y]=(a[x-1][y]=='b'? 'w':'b'); } int dfs(int s,int x,int y){ if(!s||x>4)return check(); if(4*(4-x)+5-y<s)return 0;//剪枝后速度快4倍 int f; if(y<4){ f=dfs(s,x,y+1); if(f)return 1; make(x,y); f=f||dfs(s-1,x,y+1); make(x,y); return f; } else { f

转载于:https://www.cnblogs.com/xutianshu/p/10157427.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值