PARADOX - Paradox


A paradox is a statement or group of statements that leads to a contradiction. Consider the following two statements.

          "The statement below is false."
          "The statement above is true."

If we assume that 1st statement is true then according to 1st statement the 2nd statement is false. Since the 2nd statement is false and it says that 1st statement is true, 1st statement must be false which is a contradiction. If we assume that 1st statement is false then the 2nd statement must be true (since 1st statement says 2nd statement is false). Then according to 2nd statement 1st statement must be true which is a contradiction. Thus the statement cannot be classified as true or false. This is a paradox.

Given N statements of the form "Statement X is true/false", 1<=X<=N, your task is to find if these set of statements are paradoxical or not. A set of statements is paradoxical if one or more statements cannot be classified as true or false.

Input

Multiple test cases. Each test cases begins with an integer N representing the number of statements. 1<=N<=100. Then follow N lines, representing N statements in the order 1,2,3, ...,N. Each line contains an integer X and a string S separated by a space. 1<=X<=N. S is either "true" or "false" (quotes for clarity), which means the statement is "Statement X is S". N=0 indicates the end of testcases and should not be processed. There are atmost 10000 testcases.

Output

For each test case print "PARADOX" if the set of statements are paradoxical, else print "NOT PARADOX", in a separate line.

Example

Input:
2
2 false
1 true
2
2 false
1 false
0

Output:
PARADOX
NOT PARADOX

hide comments
sfialok98: 2017-07-03 11:30:38

AC after a day...!!

sonudoo: 2017-06-19 19:37:10

After this solve CHAIN. Brute force won't work there..

siddharth9820: 2016-12-28 19:52:55

I solved the question using dfs. However there's an ad-hoc tag. Does that mean that there is a rudimentary solution to the problem too?

minhthai: 2016-03-17 13:17:58

so cute that my brain explodes =D

darkhire21: 2016-01-18 13:05:34

3
2 false
2 true
3 true
3
2 false
2 false
3 true
0
NOT PARADOX
PARADOX

Last edit: 2016-01-18 13:59:16
kejriwal: 2015-12-22 19:56:12

cute problem.. :D !

Bhuvnesh Jain: 2015-12-22 19:46:30

brute force passes.. AC in one go :)

Saksham : 2015-10-17 21:14:16

finally AC.....

Vikrant Singh: 2015-07-24 14:56:09

surprisingly Ac in 1 go xD

n3gativ3: 2015-06-05 10:45:21

My 150th :D


Added by:arun
Date:2010-01-03
Time limit:3s
Source limit:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Languages:All except: NODEJS OBJC PERL6 SQLITE VB.NET
Resource:Kurukshetra OPC 2010