[LeetCode] 1366. Rank Teams by Votes 透過投票對團隊排名

Grandyang發表於2024-07-06

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 <= 1000
  • 1 <= votes[i].length <= 26
  • votes[i].length == votes[j].length for 0 <= 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 in votes[j] where 1 <= 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


類似題目:

Online Election


參考資料:

https://leetcode.com/problems/rank-teams-by-votes

https://leetcode.com/problems/online-election/solutions/173382/c-java-python-binary-search-in-times/


LeetCode All in One 題目講解彙總(持續更新中...)

相關文章