Submit | All submissions | Best solutions | Back to list |
FRNDCIRC - FRIEND CIRCLE |
Lucy has made too many friends but she does not know how many friends are in her circle. Assume that every relation is mutual. If Lucy is Patty's friend, then Patty is also Lucy's friend. Your task is to help Lucy in keeping track of each person's circle size.
Input Specification
The first line of input contains one integer T (T<=10) specifying the number of test cases to follow. Each test case begins with a line containing an integer N (N<=100000), the number of new relations. Each of the following N lines contains couple of strings denoting the names of two people who have just formed relation, separated by a space. Names will have no more than 20 characters.
Output Specification
Print a line containing one integer, the number of people in the combined circle of two people who have just become friends.
Input
1 4 Lucy Patty Patty Alice Alice Mira Tiffany Jayden
Output
22 3 4 2
Added by: | Vamos |
Date: | 2013-06-26 |
Time limit: | 0.100s-1s |
Source limit: | 50000B |
Memory limit: | 1536MB |
Cluster: | Cube (Intel G860) |
Languages: | All except: ASM64 |
hide comments
|
|||||||
2023-04-02 14:28:31
scario problemo Last edit: 2023-04-02 14:30:17 |
|||||||
2019-09-25 16:42:14
It is a nice problem. A good practice for a disjoint set union. |
|||||||
2019-02-09 14:34:43
Use unordered_map instead of map |
|||||||
2018-06-14 20:08:49
thanks @naruto09. |
|||||||
2018-06-08 19:14:51
Replaced Scanner class with BufferedReader.. Accepted !! |
|||||||
2017-10-19 01:50:35
Easier to AC in Py2 than in PyPy because of TL on one of the testfiles being so absurdly small that interpreter launch time actually matters. Always frustrating having to wrestle against such issues, but in the end got an idea that cut my runtime by a whole second and provided a valuable lesson. What doesn't kill you, makes you stronger =) Last edit: 2018-01-29 23:28:11 |
|||||||
2017-02-22 12:14:53
I am using Java ..it is getting TLE . tried with ConcurrentHashMap and HashMap both. Someone pls help. using Map correct DS for this problem? pls help i am stuck since long ID: 18821136 Last edit: 2017-02-22 13:35:26 |
|||||||
2016-08-14 08:44:26 Madhukar Reddy
Difficult time limit for slow languages like python Last edit: 2016-08-14 08:44:45 |
|||||||
2016-04-09 20:43:32
time limit is 0.1s - 0.579s but my AC code took time 0.75s in Judge machine. How is it possible? Last edit: 2016-04-09 20:46:14 |
|||||||
2016-02-18 19:19:10 thelazycoder
Don't know why getting TLE any help please my submission id is 16312319 |