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
kkislay20: 2018-06-17 14:52:02

Can be done using a single array also. Cakewalk!!

vivek_dwivedi: 2018-06-15 22:02:27

one set ! thats it .. do it when u r boared! ;)

Last edit: 2018-06-15 22:03:17
the_ashutosh: 2018-05-30 08:42:24

just use map..

aayushbhaskar: 2018-05-26 08:21:47

AC in one go, 0.00, no STL req! :)

Last edit: 2018-05-26 08:22:10
aakash2509: 2018-05-24 13:15:30

Can be done without STL too maintaining a visited array simply.

Remember to consider ID's 0000 0004------- 0999 also. costed me unnecessarily 3 WA's -_-

persy: 2018-05-23 09:17:20

sets and thats it.. (Y)

a161112225: 2018-05-17 11:44:05

using map 0.00

coderslegacy: 2018-04-25 20:32:59

A beautiful problem on set in stl c++

riyadhrazzaq: 2018-04-07 17:39:35

I had used bitset to use as flags, so for input: 0001, 0010, 0100, 1000, 0002, 0020, 0100, I should not have gotten WA, but I DID. So, it means there are inputs other than 4 digits. Got AC w/ set.

kuchnahiaata: 2018-03-22 11:41:28

array + set + map = 0.00 :P


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