#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 matrix , what is the solution of matrix for the equation ?
Captain Chen is a nice Captain, he wants to solve the equation only when A is a diagonal matrix, which means holds for all .
“That’s easy!” says Kufeng, “the answer is simply , when 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 , giving the size of matrix and .
Then comes a single line with numbers, , where is the value of .
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, , there can be more than one possible solutions for , for example, and both satisfy the equation, so the answer is not unique.
Resources
the 12th UESTC Programming Contest Preliminary