[POJ1038]Bugs Integrated, Inc. && 状压DP

覆盖模型的状压DP 用3进制数表示i-1 ~ i行的覆盖情况 对于读入的残缺格点进行预处理标记 然后DFS构造转移一下就行

#include<cstdio>
#include<algorithm>
#include<cstring>
#include<iostream>
using namespace std;
const int P3 = 3 * 3 * 3, P2 = 3 * 3;
const int MAXM = 10;
const int MAXS = P3 * P3 * P3 * 3;
int s1, s2;
int n, S, m, K, Now, row, ans;
int Map[2][200][MAXM+10], d[2][MAXS+10];
void dfs(int cur, int s1, int s2, int cnt)
{
	if(cur > m + 1) return ;
	if(cur == m+1) {
		d[Now][s1] = max(d[Now][s1], d[Now^1][s2] + cnt);
		ans = max(ans, d[Now][s1]);
		return ;
	}
	if(!Map[0][row][cur])
		dfs(cur+3, 
				s1 * P3 + 2 * P2 + 2 * 3 + 2, 
				s2 * P3 + P2 + 3 + 1, cnt+1);
	if(!Map[1][row][cur])
		dfs(cur+2,
		        s1 * P2 + 2 * 3 + 2,
				s2 * P2, cnt+1);
	dfs(cur+1, s1 * 3 + 1, s2 * 3 + 2, cnt);
	dfs(cur+1, s1 * 3, s2 * 3 + 1, cnt);
	dfs(cur+1, s1 * 3 + 2, s2 * 3 + 2, cnt);
}
int main()
{
	int T; scanf("%d", &T); while(T--) {
		ans = 0; memset(Map, 0, sizeof(Map) + sizeof(d));
		scanf("%d%d%d", &n, &m, &K);
		for(int ii = 1; ii <= K; ii++)
		{
			int x, y; scanf("%d%d", &x, &y);
			for(int i = 0; i < 2; i++)
				for(int j = 0; j < 3; j++)
				{
					if(y - i > 0) Map[1][x+j][y-i] = 1;
					if(y - j > 0) Map[0][x+i][y-j] = 1;
				}
		}
		for(int i = 1; i <= m; i++) Map[1][2][i] = 1, Map[0][1][i] = Map[1][1][i] = 1;
		for(row = 1; row <= n; row++)
		{
			Now = row & 1;
			memset(d[Now], 0, sizeof(d[Now]));
			dfs(1, 0, 0, 0);
		}
		cout << ans << '\n';
	}
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值