A10484 | Chris and Magic Square
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
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?
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 $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 $a_{i,j}$ ( $1<=a_{i,j}<=10^{9}$ or $a_{i,j}=0$ ), the number in the $i$ -th row and $j$ -th column of the magic grid. If the corresponding cell is empty, $a_{i,j}$ will be equal to $0$ . Otherwise, $a_{i,j}$ is positive.
It is guaranteed that there is exactly one pair of integers $i,j$ $(1<=i,j<=n)$ such that $a_{i,j}=0$ .
$n$ lines follow, each of them contains $n$ integers. The $j$ -th number in the $i$ -th of them denotes $a_{i,j}$ ( $1<=a_{i,j}<=10^{9}$ or $a_{i,j}=0$ ), the number in the $i$ -th row and $j$ -th column of the magic grid. If the corresponding cell is empty, $a_{i,j}$ will be equal to $0$ . Otherwise, $a_{i,j}$ is positive.
It is guaranteed that there is exactly one pair of integers $i,j$ $(1<=i,j<=n)$ such that $a_{i,j}=0$ .
输出格式
Output a single integer, the positive integer $x$ ( $1<=x<=10^{18}$ ) 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.
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 $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.
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.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted