LeetCode 1366. Rank Teams by Votes

Question

In a special ranking system, each voter gives a rank from highest to lowest to all teams participated in the competition.

The ordering of teams is decided by who received the most position-one votes. If two or more teams tie in the first position, we consider the second position to resolve the conflict, if they tie again, we continue this process until the ties are resolved. If two or more teams are still tied after considering all positions, we rank them alphabetically based on their team letter.

Given an array of strings votes which is the votes of all voters in the ranking systems. Sort all teams according to the ranking system described above.

Return a string of all teams sorted by the ranking system.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
Input: votes = ["ABC","ACB","ABC","ACB","ACB"]
Output: "ACB"
Explanation: Team A was ranked first place by 5 voters. No other team was voted as first place so team A is the first team.
Team B was ranked second by 2 voters and was ranked third by 3 voters.
Team C was ranked second by 3 voters and was ranked third by 2 voters.
As most of the voters ranked C second, team C is the second team and team B is the third.

Input: votes = ["WXYZ","XYZW"]
Output: "XWYZ"
Explanation: X is the winner due to tie-breaking rule. X has same votes as W for the first position but X has one vote as second position while W doesn't have any votes as second position.

Input: votes = ["ZMNAGUEDSJYLBOPHRQICWFXTVK"]
Output: "ZMNAGUEDSJYLBOPHRQICWFXTVK"
Explanation: Only one voter so his votes are used for the ranking.

Input: votes = ["BCA","CAB","CBA","ABC","ACB","BAC"]
Output: "ABC"
Explanation:
Team A was ranked first by 2 voters, second by 2 voters and third by 2 voters.
Team B was ranked first by 2 voters, second by 2 voters and third by 2 voters.
Team C was ranked first by 2 voters, second by 2 voters and third by 2 voters.
There is a tie and we rank teams ascending by their IDs.

Input: votes = ["M","M","M","M"]
Output: "M"
Explanation: Only team M in the competition so it has the first rank.

Solution

We record the positions of each character and then we use customized sort for these characters. The way to solve it is so brilliant!

Code

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// time:O(len log (len)) space:O(n)
public String rankTeams(String[] votes) {
HashMap<Character, int[]> map = new HashMap<>();
int len = votes[0].length();
// mark the location of each character.
for (String vote : votes) {
for (int i = 0; i < len; i++) {
char ch = vote.charAt(i);
map.putIfAbsent(ch, new int[len]);
map.get(ch)[i]++;
}
}

List<Character> list = new ArrayList<>(map.keySet());
Collections.sort(list, (a, b) -> {
for (int i = 0; i < len; i++) {
if (map.get(a)[i] != map.get(b)[i]) {
return map.get(b)[i] - map.get(a)[i];
}
}
// if all of character occurs same.
return a - b;
});

StringBuilder sb = new StringBuilder();
for (char ch : list) sb.append(ch);
return sb.toString();
}