#P13420. [COCI 2012/2013 #6] SUME
[COCI 2012/2013 #6] SUME
题目描述
Once upon a time, there existed a sequence A consisting of positive integers. You don't know the sequence itself, but you do know the sum of every two elements of the sequence. Find the sequence !
输入格式
The first line of input contains the positive integer ().
Each of the following lines contains positive integers smaller than or equal to , forming the table S. The following relations hold: for , and for . Here denotes the number in the row and column of the table, and denotes the element of the sequence A.
It is guaranteed that for any input data set there exists a unique sequence of positive integers A with the given properties.
输出格式
The first and only line of output must contain the required sequence A (in the form of space-separated positive integers).
2
0 2
2 0
1 1
4
0 3 6 7
3 0 5 6
6 5 0 9
7 6 9 0
2 1 4 5