蓝桥杯 剪邮票(超详解)

思路:二进制枚举所有情况
dfs判断连通块
(或者可以枚举,五个数的组合数,然后判断是否联通)

#include<iostream>
#include<cstdio>
#include<cstring>
using namespace std;
const int N=20;
bool check(int state);
bool check1(int state);
int lowbit(int x);
void dfs(int x, int y);

int ans;
int g[N][N];
bool st[N][N];
int dx[4]= {-1, 0, 1, 0};
int dy[4]= {0, 1, 0, -1};
//染色不是搜深度
signed main() {
	for(int op=0; op<(1<<12); op++)
		if(check1(op)) continue;//判断当前情况是否有五个1
		else if(check(op)) ans++;//判断是否合法
	//116
	cout<<ans<<endl;
}

void dfs(int x, int y) {
	st[x][y]=true;

	for(int i=0; i<4; i++) {
		int a=x+dx[i], b=y+dy[i];
		if(a<0||a>=3||b<0||b>=4||!g[a][b]||st[a][b]) continue;
		dfs(a, b);
	}
}

bool check(int state) {
	for(int i=0; i<12; i++) g[i/4][i%4]=(state>>i&1);
//赋值为矩阵
	memset(st, false, sizeof st);//一定要初始化
	for(int i=0; i<3; i++)
		for(int j=0; j<4; j++)
			if(g[i][j]) {
				dfs(i, j);
			//判断染了多少格子,因为只搜了一次,所以被染色的一定联通
				int cnt=0;
				for(int i=0; i<3; i++)
					for(int j=0; j<4; j++)
						if(st[i][j])
							cnt++;
				return cnt==5;
			}
}

bool check1(int state) {
	int cnt=0;
	for(int i=state; i; i-=lowbit(i)) cnt++;
	return cnt!=5;//统计1的个数
}

int lowbit(int x) {
	return x&-x;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值