1464. Homogeneous Squares

单点时限: 3.0 sec

内存限制: 634 MB

Assume you have a square of size n that is divided into n × n positions just as a checkerboard. Two positions (x1, y1) and (x2, y2), where 1 ≤ x1, y1, x2, y2 ≤ n, are called “independent” if they occupy different rows and different columns, that is, x1 ≠ x2 and y1 ≠ y2. More generally, n positions are called independent if they are pairwise independent. It follows that there are n! different ways to choose n independent positions.

Assume further that a number is written in each position of such an n × n square. This square is called “homogeneous” if the sum of the numbers written in n independent positions is the same, no matter how the positions are chosen. Write a program to determine if a given square is homogeneous!

输入格式

The input contains several test cases.

The first line of each test case contains an integer n (1 ≤ n ≤ 1000). Each of the next n lines contains n numbers, separated by exactly one space character. Each number is an integer from the interval [-1000000, 1000000].

The last test case is followed by a zero.

输出格式

For each test case output whether the specified square is homogeneous or not. Adhere to the format shown in the sample output.

样例

Input
2
1 2
3 4
3
1 3 4
8 6 -2
-3 4 0
0
Output
homogeneous
not homogeneous

5 人解决,8 人已尝试。

8 份提交通过,共有 13 份提交。

7.0 EMB 奖励。

创建: 17 年前.

修改: 6 年,11 月前.

最后提交: 1 年,1 月前.

来源: Ulm Local 2006

题目标签