• 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: %d
    ",kase,ans);
    59 
    60     }
    61     return 0;
    62 }
    View Code
  • 相关阅读:
    hdu1716排列2(stl:next_permutation+优先队列)
    iOS UIWebView 载入https 网站出现NSURLConnection/CFURLConnection HTTP load failed (kCFStreamErrorDomainSSL,
    C++学习笔记23,类内函数重载
    Java---16---多线程---死锁
    Ubuntu上的Hadoop安装教程
    SAP BAPI一览 史上最全
    python脚本从excel表到处数据,生成指定格式的文件
    hdu 4865 Peter&#39;s Hobby
    【VUE】100. vue踩坑集锦
    【VUE】2.搭建vue脚手架@vue/cli,新建第一个vue项目
  • 原文地址:https://www.cnblogs.com/gongxijun/p/3891150.html
Copyright © 2020-2023  润新知