[LeetCode] 1366. Rank Teams by Votes 通過投票對團隊排名
In a special ranking system, each voter gives a rank from highest to lowest to all teams participating 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.
You are 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.
Example 1:
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 ranked third by 3 voters.
Team C was ranked second by 3 voters and 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.
Example 2:
Input: votes = ["WXYZ","XYZW"]
Output: "XWYZ"
Explanation:
X is the winner due to the tie-breaking rule. X has the same votes as W for the first position, but X has one vote in the second position, while W does not have any votes in the second position.
Example 3:
Input: votes = ["ZMNAGUEDSJYLBOPHRQICWFXTVK"]
Output: "ZMNAGUEDSJYLBOPHRQICWFXTVK"
Explanation: Only one voter, so their votes are used for the ranking.
Constraints:
1 <= votes.length <= 10001 <= votes[i].length <= 26votes[i].length == votes[j].lengthfor0 <= i, j < votes.length.votes[i][j]is an English uppercase letter.- All characters of
votes[i]are unique. - All the characters that occur in
votes[0]also occur invotes[j]where1 <= j < votes.length.
這道題給了一個排名系統,每張選票把不同的候選者進行排名,最終對候選者進行投票統計的方法是,首先數其排在第一位的票數,若得票最多,就在最終排名上放在第一,若有兩個候選者排在第一位的票數相同,則比較第二位的票數,并以此類推進行排名,若排最后還是沒有分出勝負,則按名字的字母順序進行排序。題意并不是很難理解,這里的候選者的名字就用大寫的單個字母進行代替了,每張選票就是就是一個字符串,且長度相等。由于候選者出現的位置很重要,要按不同位置來統計每個候選者的得票數,題目中限定了最多只有 26 個候選者,那么排位就有 26 個,每個候選者都需要一個長度為 26 的數組來統計每個排位上的得票數。
這里用個小 trick,由于題目中所有若各個排名都相同的話,則使用候選者的名字進行排序,所以這里用 27 個位置,最后一個位置放候選人的名字,排序起來非常方便。這里就建立一個大小為 26 by 27 的二維數組 cnt,其中 cnt[i][j] 表示候選者i在第j個位置上的得票數,當然 cnt[i][26] 除外,是候選者字母的 ASCII 碼值。由于并不是每次都有 26 個候選者,所以只需要把存在的候選者的名字加入到第 27 個位置中,可以遍歷第一張選票的候選者,直接加入字符的 ASCII 碼即可。接下來就是統計票數了,遍歷每一張選票,對于每一張遍歷到的選票,遍歷每一個位置,將該位置上的值減去1,這里為啥不是對應票數加1呢,這里實際上也是用了一個小 trick,因為排序是默認從小到大,而我們想讓得票數高的排在前面,就可以用負數。唱票完成后,就可以直接組成想要返回的字符串即可,參見代碼如下:
class Solution {
public:
string rankTeams(vector<string>& votes) {
string res;
vector<vector<int>> cnt(26, vector<int>(27));
for (char c : votes[0]) {
cnt[c - 'A'][26] = c;
}
for (string vote : votes) {
for (int i = 0; i < vote.size(); ++i) {
--cnt[vote[i] - 'A'][i];
}
}
sort(cnt.begin(), cnt.end());
for (int i = 0; i < votes[0].size(); ++i) {
res += cnt[i][26];
}
return res;
}
};
Github 同步地址:
https://github.com/grandyang/leetcode/issues/1366
類似題目:
參考資料:
https://leetcode.com/problems/rank-teams-by-votes
https://leetcode.com/problems/online-election/solutions/173382/c-java-python-binary-search-in-times/


浙公網安備 33010602011771號