FOOL - Any fool can do it

no tags 

Surely you know someone who thinks he is very clever. You decide to let him down with the following problem:

  • "Can you tell me what the syntax for a set is?", you ask him.
  • "Sure!", he replies, "a set encloses a possibly empty list of elements within two curly braces. Each element is either another set or a letter of the given alphabet. Elements in a list are separated by a comma."
  • "So if I give you a word, can you tell me if it is a syntactically correct representation of a set?"
  • "Of course, any fool can do it!" is his answer.

Now you got him! You present him with the following grammar, defining formally the syntax for a set (which was described informally by him):

Set          ::= "{" Elementlist "}"
Elementlist  ::= <empty> | List
List         ::= Element | Element "," List
Element      ::= Atom | Set
Atom         ::= "{" | "}" | ","

<empty> stands for the empty word, i.e. the list in a set can be empty.
Soon he realizes that this task is much harder than he has thought, since the alphabet consists of the characters which are also used for the syntax of the set. So he claims that it is not possible to decide efficiently if a word consisting of "{", "}" and "," is a syntactically correct representation of a set or not.
To disprove him, you need to write an efficient program that will decide this problem.

Input Specification

The first line of the input file contains a number representing the number of lines to follow.
Each line consists of a word, for which your program has to decide if it is a syntactically correct representation of a set. You may assume that each word consists of between 1 and 200 characters from the set { "{", "}", "," }.

Output Specification

Output for each test case whether the word is a set or not. Adhere to the format shown in the sample output.

Sample Input

4
{}
{{}}
{{}},{,}}
{,,}

Sample Output

Word #1: Set
Word #2: Set
Word #3: Set
Word #4: No Set

hide comments
lotus_guy: 2016-06-02 19:56:25

DP xD

Shubham Jadhav: 2015-06-21 19:55:59

Had fun solving it.. :)

ISHANI: 2015-02-01 12:03:02

Easy but Very Cute problem....

Ritam Shukla: 2013-05-29 12:04:42

@finisher : The third word can be seen as a set of two sets - one containing a "}" and another containing a "," i.e. :

{
{
} //the only atom of the first subset
},
{
, //the only atom of the second subset
}
}

Last edit: 2013-09-08 07:32:10
Mahavir Chopra: 2013-05-28 06:30:13

explain third test case....


Added by:Adrian Kuegel
Date:2005-06-24
Time limit:6.400s
Source limit:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Languages:All except: NODEJS PERL6 VB.NET
Resource:University of Ulm Local Contest 2005