zoukankan      html  css  js  c++  java
  • B. Chris and Magic Square

    time limit per test
    2 seconds
    memory limit per test
    256 megabytes
    input
    standard input
    output
    standard output
     

    ZS the Coder and Chris the Baboon arrived at the entrance of Udayland. There is a n × n magic grid on the entrance which is filled with integers. Chris noticed that exactly one of the cells in the grid is empty, and to enter Udayland, they need to fill a positive integer into the empty cell.

    Chris tried filling in random numbers but it didn't work. ZS the Coder realizes that they need to fill in a positive integer such that the numbers in the grid form a magic square. This means that he has to fill in a positive integer so that the sum of the numbers in each row of the grid (), each column of the grid (), and the two long diagonals of the grid (the main diagonal —  and the secondary diagonal — ) are equal.

    Chris doesn't know what number to fill in. Can you help Chris find the correct positive integer to fill in or determine that it is impossible?

    Input

    The first line of the input contains a single integer n (1 ≤ n ≤ 500) — the number of rows and columns of the magic grid.

    n lines follow, each of them contains n integers. The j-th number in the i-th of them denotes ai, j (1 ≤ ai, j ≤ 109 or ai, j = 0), the number in the i-th row and j-th column of the magic grid. If the corresponding cell is empty, ai, j will be equal to 0. Otherwise, ai, j is positive.

    It is guaranteed that there is exactly one pair of integers i, j (1 ≤ i, j ≤ n) such that ai, j = 0.

    Output

    Output a single integer, the positive integer x (1 ≤ x ≤ 1018) that should be filled in the empty cell so that the whole grid becomes a magic square. If such positive integer x does not exist, output  - 1 instead.

    If there are multiple solutions, you may print any of them.

    Examples
    input
    3
    4 0 2
    3 5 7
    8 1 6
    output
    9
    input
    4
    1 1 1 1
    1 1 0 1
    1 1 1 1
    1 1 1 1
    output
    1
    input
    4
    1 1 1 1
    1 1 0 1
    1 1 2 1
    1 1 1 1
    output
    -1

    Note

    In the first sample case, we can fill in 9 into the empty cell to make the resulting grid a magic square. Indeed,

    The sum of numbers in each row is:

    4 + 9 + 2 = 3 + 5 + 7 = 8 + 1 + 6 = 15.

    The sum of numbers in each column is:

    4 + 3 + 8 = 9 + 5 + 1 = 2 + 7 + 6 = 15.

    The sum of numbers in the two diagonals is:

    4 + 5 + 6 = 2 + 5 + 8 = 15.

    In the third sample case, it is impossible to fill a number in the empty square such that the resulting grid is a magic square.

    题意:

    将0换为任意正整数使矩阵的每一行的和和每一列的和以及正反对角线的和都相等。

    这场没有上分的罪魁祸首!!!!!!

    注意两个特判:

    当n==1时;

    当结果res<=0时;

    附AC代码:

     1 #include<bits/stdc++.h>
     2 using namespace std;
     3 
     4 long long a[505][505];
     5 long long sumx[505];
     6 long long sumy[505];
     7 
     8 int main(){
     9     int n;
    10     cin>>n;
    11     
    12     int x,y;
    13     memset(sumx,0,sizeof(sumx));
    14     memset(sumy,0,sizeof(sumy));
    15     for(int i=1;i<=n;i++){
    16         for(int j=1;j<=n;j++){
    17             cin>>a[i][j];
    18             sumx[i]+=a[i][j];
    19             sumy[j]+=a[i][j];
    20             if(a[i][j]==0){
    21                 x=i;
    22                 y=j;
    23             }
    24         }
    25     } 
    26     if(n==1){
    27         cout<<"1"<<endl;
    28         return 0;
    29     }
    30     long long res;
    31     if(x!=1){
    32         res=sumx[1]-sumx[x];
    33     }
    34     else{
    35         res=sumx[2]-sumx[x];
    36     }
    37     sumx[x]+=res;
    38     sumy[y]+=res;
    39     a[x][y]=res;
    40     long long sums=0,sumt=0;
    41     for(int i=1;i<=n;i++){
    42         sums+=a[i][i];
    43         sumt+=a[i][n-i+1];
    44     }
    45     sort(sumx+1,sumx+n+1);
    46     sort(sumy+1,sumy+n+1);
    47 //    cout<<sumx[1]<<" "<<sumx[n]<<" "<<sumy[1]<<" "<<sumy[n]<<" "<<sums<<" "<<sumt<<" "<<res;
    48     if(sumx[1]==sumx[n]&&sumy[1]==sumy[n]&&sumx[1]==sumy[n]&&sums==sumt&&sums==sumx[1]&&res>0){
    49         cout<<res<<endl;
    50     }
    51     else{
    52         cout<<"-1"<<endl;
    53     }
    54     return 0;
    55 }
  • 相关阅读:
    APP 元素定位总结(未完待补充)
    vue-axios常见请求配置和全局设置
    vue-axios发送并发请求
    vue-axios基本使用
    vue-vuex-store目录结构
    vue-vuex-modules的基本使用
    vue-vuex-actions的基本使用
    vue-vuex-mutations的类型常量
    vue-vuex-state响应式
    vue-vuex-mutation的提交风格
  • 原文地址:https://www.cnblogs.com/Kiven5197/p/5821706.html
Copyright © 2011-2022 走看看