Canadian Computing Competition: 2009 Stage 1, Junior #5, Senior #3
The main socializing tool for students today is Facebook. There are many interesting computational questions connected to Facebook, such as the "degree of separation" between two people.
For example, in the diagram below, there are many different paths between Abby and Alberto. Some of these paths are:
- Abby → Zoey → Alberto
- Abby → Natalie → Zoey → Alberto
- Abby → George → Ali → Kara → Richardo → Jeff → Alberto
The shortest path between Abby and Alberto has two steps (Abby → Zoey, and Zoey → Alberto), so we say the degree of separation is 2. Additionally, Alberto would be a friend of a friend of Abby.
You can assume an initial configuration of who is friends with who as outlined in the diagram above. You will need to store these relationships in your program. These relationships can change though, and your program needs to handle these changes. In particular, friendships can begin, possibly with new people. Friendships can end. You should be able to find friends of friends and determine the degree of separation between two people.
Input/Output Description
Your program will read in six possible commands, with the action to be performed by your program outlined below. You may assume that and are integers, with , , , and . You may also assume that instructions (i, d, n, f, s, q) occur one per line and parameters (zero, one or two integers) occur one per line.
i
- make person and person friends. If they are already friends, no change needs to be made. If either or is a new person, add them.d
- delete the friendship between person and person .n
- output the number of friends that person has.f
- output the number of "friends of friends" that person has. Notice that and direct friends of are not counted as "friends of friends."s
- output the degree of separation between and . If there is no path from to , outputNot connected
.q
- quit the program.
Sample Input
i
20
10
i
20
9
n
20
f
20
s
20
6
q
Sample Output
2
3
4
Explanation
n 20
: Person 20 has two friends (10 and 9).f 20
: The friends of friends of 20 are 8, 11, 12.s 20 6
: The shortest path is 20 → 9 → 8 → 7 → 6.
Comments
Anyone know why mine works for the test case and not the actual judge cases?
Edit: Solved, something was wrong with my "f" case, but i figured it out.
the hardest part of the problem is copying down the edges. no, i didn't check the comments before starting because i didn't want to get any clues
any one can please take a look at my submission, where is the point of the last test case, thanks
consider the case where they ask you for the degrees of separation between two friends but one of the friends was never introduced
Should it not considered as not connected domain? I have that thought, if a new firends node value is 0, then is not coneencted then
To the people use Python:
I used sets for my adjacency matrix. Is it still a matrix if it's sets?
I think the test data is incomplete for this problem.
https://dmoj.ca/submission/2157288 this passes with AC but fails input
f 10
output is 3 but it should be 2 (double counts friend 12)
Edit: another example is
f 11
, again output should be 2 but it passes with output 3Adjacency list:
{{}, {6}, {6}, {4,5,6,15}, {3,5,6}, {3,4,6}, {1,2,3,4,5,7}, {6,8}, {7,9}, {8,10,12}, {9,11}, {10,12}, {9,11,13}, {12,14,15}, {13}, {3,13}, {17,18}, {16,18}, {16,17}};
dumb ass me was gonna use a map, then I realized that the numbers are all ascending ints...
spoiler alert
For anyone who doesn't want to type it (just create a function that adds a bidirectional edge):
edge(1, 6);edge(2, 6);edge(3, 6);edge(4, 6);edge(5, 6); edge(3, 5);edge(3, 4);edge(4, 5);edge(6, 7);edge(7, 8); edge(8, 9);edge(9, 12);edge(9, 10);edge(10, 11); edge(11, 12);edge(3, 15);edge(12, 13);edge(13, 15); edge(13, 14);edge(16, 18);edge(16, 17);edge(17, 18);
For java users (graph):
for anyone who doesn't want to work out the graph(py3):
Adjacency list with braces:
can friends of friends overlap
No. In the diagram given, 10 only has 2 friends of friends: 8 and 12. 12 is not counted twice.
You may also assume that instructions (i, d, n, f, s, q) occur one per line and parameters (zero, one or two integers) occur one per line. so it should take in "i 20 10" instead of "i /n 20 /n 10"
can someone check my code to see if I did something wrong or made a stupid mistake?
I could be wrong but your Degree of Separation code shouldn't work...
A counterexample is probably most helpful.
Consider a graph with the following edges:
Now when asked to find the shortest path between 1 and 5 (the degree of separation), your algorithm would choose 1->2->3->4->5 even though an edge exists between 1 and 5 directly.
Punchline is that a DFS can be used to check if a path exists between two vertices, but it does not necessarrily find the shortest such path.
Probably a good idea would be to google "Depth First Search", "Breadth First Search" etc.
Again I haven't actually checked your code by running it (cannot right now), so I might be wrong.
yeah true true
Oops mb i did not read the question correctly. I thought the diagram was just an example of how connections worked.
can anyone explain this friends of friends thing
For every friend that a person has, count the total number of friends that that friend has, excluding the original person and the person's direct friends.
This problem is also an S3, not just a J5.