CF711B.Chris and Magic Square

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

ZS the Coder and Chris the Baboon arrived at the entrance of Udayland. There is a n×nn×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?

输入格式

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

nn lines follow, each of them contains nn integers. The jj -th number in the ii -th of them denotes ai,ja_{i,j} ( 1<=ai,j<=1091<=a_{i,j}<=10^{9} or ai,j=0a_{i,j}=0 ), the number in the ii -th row and jj -th column of the magic grid. If the corresponding cell is empty, ai,ja_{i,j} will be equal to 00 . Otherwise, ai,ja_{i,j} is positive.

It is guaranteed that there is exactly one pair of integers i,ji,j (1<=i,j<=n)(1<=i,j<=n) such that ai,j=0a_{i,j}=0 .

输出格式

Output a single integer, the positive integer xx ( 1<=x<=10181<=x<=10^{18} ) that should be filled in the empty cell so that the whole grid becomes a magic square. If such positive integer xx does not exist, output 1-1 instead.

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

输入输出样例

  • 输入#1

    3
    4 0 2
    3 5 7
    8 1 6
    

    输出#1

    9
    
  • 输入#2

    4
    1 1 1 1
    1 1 0 1
    1 1 1 1
    1 1 1 1
    

    输出#2

    1
    
  • 输入#3

    4
    1 1 1 1
    1 1 0 1
    1 1 2 1
    1 1 1 1
    

    输出#3

    -1
    

说明/提示

In the first sample case, we can fill in 99 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=154+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=154+3+8=9+5+1=2+7+6=15 .

The sum of numbers in the two diagonals is:

4+5+6=2+5+8=154+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.

首页