BUGLIFE - A Bug’s Life


Professor Hopper is researching the sexual behavior of a rare species of bugs. He assumes that they feature two different genders and that they only interact with bugs of the opposite gender. In his experiment, individual bugs and their interactions were easy to identify, because numbers were printed on their backs.

Given a list of bug interactions, decide whether the experiment supports his assumption of two genders with no homosexual bugs or if it contains some bug interactions that falsify it.

Input

The first line of the input contains the number of scenarios. Each scenario starts with one line giving the number of bugs (at least one, and up to 2000) and the number of interactions (up to 1000000) separated by a single space. In the following lines, each interaction is given in the form of two distinct bug numbers separated by a single space. Bugs are numbered consecutively starting from one.

Output

The output for every scenario is a line containing “Scenario #i:”, where i is the number of the scenario starting at 1, followed by one line saying either “No suspicious bugs found!” if the experiment is consistent with his assumption about the bugs’ sexual behavior, or “Suspicious bugs found!” if Professor Hopper’s assumption is definitely wrong.

Example

Input:
2
3 3
1 2
2 3
1 3
4 2
1 2
3 4

Output:
Scenario #1:
Suspicious bugs found!
Scenario #2:
No suspicious bugs found!

hide comments
harshraj22aug: 2020-02-03 17:56:15

WTF !! Solutions like https://ideone.com/<--------snip---no link please-------> getting passed ?? See line 40, not clearing results of previous testcase and still getting passed. Run the following testcases on it, :
4
3 2
1 2
2 3
3 3
1 2
2 3
3 1
5 2
1 2
3 4
4 4
1 2
3 4
3 1
2 4


1
4 4
1 2
3 4
3 1
2 4

This is really pathetic !!!

Last edit: 2020-02-04 07:12:01
sandeep48: 2020-01-28 04:36:17

maintain different array for gender as visited array..applying dfs AC

Last edit: 2020-01-28 09:30:30
bouazza_elaa: 2020-01-17 11:04:52

Um, wtf this is really problematic. Bugs have the right to express their sexual identity however they PLEASE. I'm literally shaking rn

anujrajodiya: 2020-01-11 06:36:59

Take care of the output format!!
costed me 3 WA

hkch: 2020-01-11 02:14:30

For all those who are stuck at problem number 50 and are using bipartite and dfs. Try this test case
1
4 4
1 3
1 4
2 3
2 4
Output:
"No suspicious bugs found!"

ak67373: 2020-01-02 12:10:10

bidirected graph, dfs and put some condition in colouring...

makkycp: 2019-12-28 15:45:10

Check for all components..
graph isn't connected!

manish_thakur: 2019-12-21 14:31:16

AC in 13th go, still happy!

an_6564: 2019-10-16 18:02:53

if anyone is using python and getting NZEC using recursive dfs then make sure to use setrecursionlimit and it should solve your problem

o1810156: 2019-10-02 10:56:35

1
4 3
1 3
2 4
3 4

have to be considered.
But cases like this may not be included.


Added by:Daniel Gómez Didier
Date:2008-11-17
Time limit:1s-5s
Source limit:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Languages:All except: ERL JS-RHINO NODEJS PERL6 VB.NET
Resource:2007 PUJ - Circuito de Maratones ACIS / REDIS