Class Solution
-
- All Implemented Interfaces:
public final class Solution
1583 - Count Unhappy Friends\.
Medium
You are given a list of
preferences
forn
friends, wheren
is always even.For each person
i
,preferences[i]
contains a list of friends sorted in the order of preference. In other words, a friend earlier in the list is more preferred than a friend later in the list. Friends in each list are denoted by integers from0
ton-1
.All the friends are divided into pairs. The pairings are given in a list
pairs
, where <code>pairsi = x<sub>i</sub>, y<sub>i</sub></code> denotes <code>x<sub>i</sub></code> is paired with <code>y<sub>i</sub></code> and <code>y<sub>i</sub></code> is paired with <code>x<sub>i</sub></code>.However, this pairing may cause some of the friends to be unhappy. A friend
x
is unhappy ifx
is paired withy
and there exists a friendu
who is paired withv
but:x
prefersu
overy
, andu
prefersx
overv
.
Return the number of unhappy friends.
Example 1:
Input: n = 4, preferences = \[\[1, 2, 3], 3, 2, 0, 3, 1, 0, 1, 2, 0], pairs = \[\[0, 1], 2, 3]
Output: 2
Explanation:
Friend 1 is unhappy because:
1 is paired with 0 but prefers 3 over 0, and
3 prefers 1 over 2.
Friend 3 is unhappy because:
3 is paired with 2 but prefers 1 over 2, and
1 prefers 3 over 0.
Friends 0 and 2 are happy.
Example 2:
Input: n = 2, preferences = \[\[1], 0], pairs = \[\[1, 0]]
Output: 0
Explanation: Both friends 0 and 1 are happy.
Example 3:
Input: n = 4, preferences = \[\[1, 3, 2], 2, 3, 0, 1, 3, 0, 0, 2, 1], pairs = \[\[1, 3], 0, 2]
Output: 4
Constraints:
2 <= n <= 500
n
is even.preferences.length == n
preferences[i].length == n - 1
0 <= preferences[i][j] <= n - 1
preferences[i]
does not containi
.All values in
preferences[i]
are unique.pairs.length == n/2
pairs[i].length == 2
<code>x<sub>i</sub> != y<sub>i</sub></code>
<code>0 <= x<sub>i</sub>, y<sub>i</sub><= n - 1</code>
Each person is contained in exactly one pair.
-
-
Constructor Summary
Constructors Constructor Description Solution()
-