FACEFRND - Friends of Friends
Bob uses a social networking site almost all the time. He was wondering what are Friends of Friends in that social networking site? If “X” is his friend, and “Y” is X’s friend but “Y” is not his friend, then “Y” is called his friend of friend. You have to find how many friends of friends Bob has. (Each user in that social networking site has a unique 4-digit ID number)
Input
First line contains a integer “N” (1 ≤ N ≤ 100) the number of friends in Bob's Profile. Then follow N lines.
First Integer in each line is the ID number of Bob's friend, then an integer “M” (1 ≤ M ≤ 100) is the number of people in his friend list. Then follow M integers in that line, denoting the ID number of friends in his friend list (excluding Bob).
Output
Output a single integer denoting Bob's number of friends of friends.
Example
Input: 3 2334 5 1256 4323 7687 3244 5678 1256 2 2334 7687 4323 5 2334 5678 6547 9766 9543 Output: 6
hide comments
shekhar_kumar:
2017-07-29 21:27:08
Simple one
|
|
jatin03:
2017-07-04 12:57:50
No need of stl simple array will do |
|
sandeep_4141:
2017-06-11 08:50:33
very easy stuff !! |
|
nermatibhanu:
2017-05-30 16:15:49
Got 2 WA because of brackets
|
|
vivek_reddy:
2017-04-20 11:25:28
no need of stl just boolean array |
|
anurag_tangri:
2017-04-13 19:05:09
AC in one go ! |
|
rohit9934:
2017-03-08 14:11:43
Easiest Problem till now.If you no basic 1 property of set(STL),this is just like writing hello world program for you. |
|
nilabja16180:
2017-03-01 17:10:30
Use set, AC in one GO! Last edit: 2017-03-01 18:03:38 |
|
ankitshrey112:
2017-02-18 22:14:18
simply use set/map.
|
|
aditya9125:
2017-02-18 18:05:51
set and/or map. |
Added by: | Ankit Kumar Vats |
Date: | 2011-10-20 |
Time limit: | 1s |
Source limit: | 50000B |
Memory limit: | 1536MB |
Cluster: | Cube (Intel G860) |
Languages: | All |
Resource: | Own Problem |