#Lutece0793. A Linear Algebra Problem

A Linear Algebra Problem

Migrated from Lutece 793 A Linear Algebra Problem

All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.

Description

God Kufeng is the God of Math. However, Kufeng is not so skilled with linear algebra, especially when dealing with matrixes.

One day, Captain Chen has a problem with matrix, here is the problem:

Given a n×nn\times n matrix AA, what is the solution of n×nn\times n matrix XX for the equation AX+XA=2AAX + XA = 2A?

Captain Chen is a nice Captain, he wants to solve the equation only when A is a diagonal matrix, which means Aij=0A_{ij} = 0 holds for all iji \neq j .

“That’s easy!” says Kufeng, “the answer is simply X=IX = I, when II is the Identity Matrix.”

“But… is it the only solution for the equation above?” Captain Chen asks.

Kufeng cannot answer this question, can you help him?

Input

The first line of input is a number nn, giving the size of matrix AA and XX. (1n1000)(1\leq n\leq 1000)

Then comes a single line with nn numbers, x1,x2,,xnx_1, x_2, \cdots, x_n, where xix_i is the value of AiiA_{ii}. (10000xi10000)(-10000\leq x_i\leq 10000)

Output

If the answer is unique, output UNIQUE, otherwise output NOT UNIQUE

Samples

3
1 2 3
UNIQUE
2
1 -1
NOT UNIQUE

Note

For the second sample input, A=(1001)A=\begin{pmatrix}1 & 0 \\ 0 & -1\end{pmatrix}, there can be more than one possible solutions for XX, for example, X=(1001)X=\begin{pmatrix}1 & 0 \\ 0 & 1 \end{pmatrix} and X=(1011)X=\begin{pmatrix}1 & 0 \\ 1 & 1 \end{pmatrix} both satisfy the equation, so the answer is not unique.

Resources

the 12th UESTC Programming Contest Preliminary