Submit | All submissions | Best solutions | Back to list |
RPLA - Answer the boss! |
Eloy is a hard worker man, however, he is constantly bullied by his superiors, molested by this, one day he was wondering in what “rank” you are, so you can bully the people with lower ranks, also to discover who can really bully Eloy!.
Now, given the number of employees and the number of relations between them, Eloy need you to output the “rank” which employee is in, being 1 the “boss” (not bullied by anybody) and the employee who are in these ranks
Input
There will be an integer T denoting the number of test cases, then, T test cases will follow. Each test case starts with two integers N and R, the number of employees and the number of relations between them. The next R lines consists of two integers R1 and R2, meaning that “employee R1 is lower than employee R2's rank”.
Output
You will output for each test case the string “Scenario #i:” where i is the test case you are analyzing, after that, you will print N lines, for each line you will output the rank of the employee and the employee itself, if there is the same rank for several employees, then output them lexicographically ordered (the first is the lower.)
Sample
Input: 2 5 6 2 0 2 4 1 4 1 2 3 2 4 0 5 4 1 0 2 0 3 2 4 2 Output: Scenario #1: 1 0 2 4 3 2 4 1 4 3 Scenario #2: 1 0 2 1 2 2 3 3 3 4
Blank line between test cases for clarification and separation. Please note that can be more than one "boss" (not bullied by anybody.)
Constraints
1 <= N <= 1000; 1 <= R <= 10000
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
|
|||||||
2012-09-14 14:51:44 (Tjandra Satria Gunawan)(曾毅昆)
Yeah! first place! woohoo :-D |
|||||||
2012-06-23 02:58:24 Ranker
Will R1 & R2 be always b/w 0 and n. (0 including and n excluding)? |
|||||||
2012-05-05 16:55:33 Pranay
nice problem |
|||||||
2012-04-21 11:46:03 LeppyR64
Is this a valid test case? 1 3 3 0 1 1 2 2 0 David says: There will be no cycles at all Last edit: 2012-04-23 21:41:21 |