Submit | All submissions | Best solutions | Back to list |
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
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 |
hide comments
|
||||||
2017-06-19 19:37:10
After this solve CHAIN. Brute force won't work there.. |
||||||
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? |
||||||
2016-03-17 13:17:58 minhthai
so cute that my brain explodes =D |
||||||
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 |
||||||
2015-12-22 19:56:12 kejriwal
cute problem.. :D ! |
||||||
2015-12-22 19:46:30 Bhuvnesh Jain
brute force passes.. AC in one go :) |
||||||
2015-10-17 21:14:16 Saksham
finally AC..... |
||||||
2015-07-24 14:56:09 Vikrant Singh
surprisingly Ac in 1 go xD |
||||||
2015-06-05 10:45:21 n3gativ3
My 150th :D |
||||||
2015-04-22 16:21:08
Loved the problem, thanks! |