Problem Description
You are given a list of preferences for n friends, where n is always even. For each person i, preferences[i] contains a list of friends sorted in the order of preference. Friends in each list are denoted by integers from 0 to n-1. All the friends are divided into pairs. However, this pairing may cause some of the friends to be unhappy. A friend x is unhappy if x is paired with y and there exists a friend u who is paired with v but:
- x prefers u over y, and
- u prefers x over v. Return the number of unhappy friends.
Key Insights
- Each friend has a preference list indicating who they favor.
- A friend can be unhappy if they are paired with someone they prefer less than another friend who also prefers them over their current partner.
- The problem can be solved by checking each pairing for potential unhappy conditions.
Space and Time Complexity
Time Complexity: O(n^2) - For each friend, we may need to check their preferences against the preferences of all friends. Space Complexity: O(n) - To store the preferences and the pairs.
Solution
To solve the problem, we follow these steps:
- Create a mapping of each friend's preferences to allow for O(1) lookups.
- Iterate through each pair to check if either friend in the pair is unhappy.
- For a given friend x paired with y, check each of their preferences to see if there exists a friend u paired with v that would make x unhappy.
- Count and return the number of unhappy friends.