uva------(11464)Even Parity

时间:2022-05-05
本文章向大家介绍uva------(11464)Even Parity,主要内容包括其使用实例、应用技巧、基本知识点总结和需要注意事项,具有一定的参考价值,需要的朋友可以参考一下。

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


Problem Setter: Sohel Hafiz,

Special Thanks: Derek Kisman, Md. Arifuzzaman Arif

代码

 1 #include<cstdio>
 2 #include<cstring>
 3 #include<algorithm>
 4 using namespace std;
 5 const int maxn = 20;
 6 const int INF = 1000000000;
 7 int n,A[maxn][maxn],B[maxn][maxn];
 8 
 9 int work(int s)
10 {
11     memset(B,0,sizeof(B));
12     for(int c=0 ; c<n;c++)
13     {
14         if(s&(1<<c))B[0][c]=1;
15         else if(A[0][c]==1) return INF;
16     }
17     for(int r=1;r<n ;r++)
18     {
19         for(int c=0;c<n;c++)
20         {
21           int sum=0;
22           if(r>1)sum+=B[r-2][c];
23           if(c>0)sum+=B[r-1][c-1];
24           if(c<n-1) sum+=B[r-1][c+1];
25           B[r][c]=sum%2;
26           if(A[r][c]==1&&B[r][c]==0)
27             return INF;
28         }
29     }
30     int cnt=0;
31     for(int r=0;r<n;r++)
32     {
33         for(int c=0;c<n;c++)
34         {
35           if(A[r][c]!=B[r][c])cnt++;
36         }
37     }
38     return cnt;
39 }
40 int main()
41 {
42     int T;
43     scanf("%d",&T);
44     for(int kase=1;kase<=T;kase++)
45     {
46         scanf("%d",&n);
47         for(int r=0;r<n;r++)
48         {
49             for(int c=0;c<n;c++)
50             {
51                 scanf("%d",&A[r][c]);
52             }
53         }
54         int ans=INF;
55         for(int s=0;s<(1<<n);s++)
56             ans=min(ans,work(s));
57         if(ans==INF) ans=-1;
58         printf("Case %d: %dn",kase,ans);
59 
60     }
61     return 0;
62 }