前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >uva------(11464)Even Parity

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

作者头像
Gxjun
发布2018-03-22 13:53:17
6590
发布2018-03-22 13:53:17
举报
文章被收录于专栏:mlml

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

代码

代码语言:javascript
复制
 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: %d\n",kase,ans);
59 
60     }
61     return 0;
62 }
本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2014-08-04 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • Sample Input                             Output for Sample Input
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档