部分枚举+递推+状态压缩+uva11464

来源:互联网 发布:一辈子买不起房子知乎 编辑:程序博客网 时间:2024/04/26 22:05

D

Even Parity

Input: Standard Input

Output: Standard Output

We have a grid of size N x N. Each cell of the grid initially contains a zero(0) or a one(1). 
The parity of a cell is the number of 1s surrounding that cell. A cell is surrounded by at most 4 cells (top, bottom, left, right).

Suppose we have a grid of size 4 x 4: 

 

1

0

1

0

The parity of each cell would be

1

3

1

2

1

1

1

1

2

3

3

1

0

1

0

0

2

1

2

1

0

0

0

0

0

1

0

0

 

 

 

 

 

 

For this problem, you have to change some of the 0s to 1s so that the parity of every cell becomes even. We are interested in the minimum number of transformations of 0 to 1 that is needed to achieve the desired requirement.

 
Input

The first line of input is an integer T (T<30) that indicates the number of test cases. Each case starts with a positive integer N(1≤N≤15). Each of the next N lines contain N integers (0/1) each. The integers are separated by a single space character.

 

Output

For each case, output the case number followed by the minimum number of transformations required. If it's impossible to achieve the desired result, then output -1 instead.

 

Sample Input                             Output for Sample Input

3
3
0 0 0
0 0 0
0 0 0
3
0 0 0
1 0 0
0 0 0
3
1 1 1
1 1 1
0 0 0
 

Case 1: 0 
Case 2: 3 
Case 3: -1









思路:枚举第一行,检查下面的是不是符合条件,枚举的时候用状态压缩表示当前状态。

下面是代码:

#include<iostream>#include<cstdio>#include<cstring>#include<algorithm>using namespace std;const int MAXN=20;const int INF=100000000;int N,A[MAXN][MAXN],B[MAXN][MAXN];int check(int s){    memset(B,0,sizeof(B));    for(int i=0;i<N;i++)    {        if(s&(1<<i)) B[0][i]=1;        else if(A[0][i]==1) return INF;    }    for(int i=1;i<N;i++)    for(int j=0;j<N;j++)    {        int sum=0;        if(i>1) sum+=B[i-2][j];        if(j>0) sum+=B[i-1][j-1];        if(j<N-1) sum+=B[i-1][j+1];        B[i][j]=sum%2;        if(A[i][j]==1&&B[i][j]==0)        return INF;    }    int cnt=0;    for(int i=0;i<N;i++)    for(int j=0;j<N;j++)    if(A[i][j]!=B[i][j])    cnt++;    return cnt;}int main(){    #ifndef ONLINE_JUDGE        freopen("in.txt","r",stdin);    #endif    int t;    scanf("%d",&t);    for(int cas=1;cas<=t;cas++)    {        scanf("%d",&N);        for(int i=0;i<N;i++)        for(int j=0;j<N;j++)        scanf("%d",&A[i][j]);        int ans=INF;        for(int s=0;s<(1<<N);s++)        ans=min(ans,check(s));        if(ans==INF) ans=-1;        printf("Case %d: %d\n",cas,ans);    }    return 0;}



0 0
原创粉丝点击