RPLE - Espionage

Marcos the little one decided to build and manage an espionage agency, he was happy working as the chief of his agency, hiring spies to spy everybody in the country! But he realized that some of their own spies are spying themselves, of course, this is bad to the business and he don't want this to happen, he wants a program to alert him whenever a spy is spying another spy.

Input

Will consists in T test cases, then, T cases will follow, starting from two integers N and R, each one denoting the number of persons to evaluate and the number of relationships spy-person each one has, then, R lines will follow and will contain two integers R1 and R2, meaning that R1 spies R2.

Output

Will consist in T lines, starting from the string “Scenario #i: “ where i is the number of the test case you're analyzing, print the string “spying” if each spy has as a target a civilian, print “spied” otherwise.

Input

3
3 2
0 1
2 1
3 3
0 1
2 1
0 2
4 2
2 3
0 1

Output

Scenario #1: spying
Scenario #2: spied
Scenario #3: spying

Constraints

1 <= N <= 1000

1 <= R <= 10000

Explanation of the second test case:

Spy 0 spies civilian 1, spy 2 spies civilian 1, spy 0 spies spy 2. (Spied case).


Added by:david_8k
Date:2012-04-12
Time limit:1s
Source limit:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Languages:All except: ASM64
Resource:Own Problem used for the RPL contest

hide comments
2020-11-10 10:09:37
Please explain the input and output :/
2020-10-03 09:17:56
Weak test cases
Take care of the indexing while answering
2020-06-25 15:12:49
Ques is not clear :( , will someone please help me what is the meaning of N here??

[NG]: N people numbered 0..N-1.

Last edit: 2020-06-26 05:57:02
2019-06-03 09:43:57
pay attention to the output format. costed me 1 WA :(
2019-05-28 22:00:13
did it using just array of vectors
2019-03-21 13:29:39
0.01 second ... vector and binary search
2017-05-11 14:40:27
Avoid Input break :)
2016-08-11 20:07:58
Irritating question. Still can't figure out why i got so many WA's.
2015-06-29 02:22:58 Arun Vinud
Don't break the input!!!
2014-12-21 08:31:57 Vamsi Krishna Avula
'r' number of pairs, do they lie between 0 and n - 1 (included)?
I got a runtime error based on that assumption, so can someone confirm?
Edit: my fault, they lie between 0 and n - 1

Last edit: 2014-12-21 09:24:23
© Spoj.com. All Rights Reserved. Spoj uses Sphere Engine™ © by Sphere Research Labs.