POJ-1185 炮兵阵地

POJ-1185 炮兵阵地_第1张图片

地址:http://poj.org/problem?id=1185

思路:状态压缩DP,对每行的状态进行枚举,由于一个炮兵影响相邻两行,因此用 dp[i][j][k]来保存 第i行的状态为j,第 i-1行状态为k时的最大个数。

Code :

#include
#include
using namespace std;

const int MAX_N=105;
const int MAX_M=75;
int n,m;
int d[MAX_N],p[MAX_M],s[MAX_M];
int dp[MAX_N][MAX_M][MAX_M];

int Find(int x){
	int res=0;
	while(x){
		if(x&1)	++res;
		x>>=1;
	}
	return res;
}

bool judge1(int x){
	return (x&(x<<1))||(x&(x<<2));
}

bool judge2(int a,int b){
	return a&b;
}

int main()
{
	ios::sync_with_stdio(false);
	while(cin>>n>>m){
		memset(d,0,sizeof(d));
		memset(dp,0,sizeof(dp));
		string str;
		for(int i=1;i<=n;++i)
		{
			cin>>str;
			for(int j=0;j

 

你可能感兴趣的:(POJ,状态压缩DP,DP)