Problem Description
Given the arrays watchedVideos and friends, where watchedVideos[i] contains the list of watched videos and friends[i] contains the list of friends for the person with id = i. Level 1 of videos are all watched videos by your friends, level 2 are all watched videos by the friends of your friends, and so on. Given your id and the level of videos, return the list of videos ordered by their frequencies in increasing order. For videos with the same frequency, order them alphabetically.
Key Insights
- The problem can be modeled as a graph where each person is a node, and edges exist between friends.
- We can use Breadth-First Search (BFS) to traverse the graph and find the videos watched by friends at a specific level.
- Counting the frequency of videos can be efficiently done using a hash table.
- Sorting the result based on frequency and alphabetically is crucial for the final output.
Space and Time Complexity
Time Complexity: O(n + m log m), where n is the number of people and m is the number of videos watched at the specified level. Space Complexity: O(n + v), where n is the number of people and v is the number of unique videos watched.
Solution
To solve the problem, we will perform the following steps:
- Use BFS to explore the friends' graph up to the specified level.
- Collect watched videos from friends at that level into a hash table to count their frequencies.
- Sort the videos first by frequency and then alphabetically to produce the final result.