Medium
,String
,Greedy
,Queue
In the world of Dota2, there are two parties: the Radiant and the Dire.
The Dota2 senate consists of senators coming from two parties. Now the Senate wants to decide on a change in the Dota2 game. The voting for this change is a round-based procedure. In each round, each senator can exercise one of the two rights:
Given a string senate
representing each senator's party belonging. The character 'R'
and 'D'
represent the Radiant party and the Dire party. Then if there are n
senators, the size of the given string will be n
.
The round-based procedure starts from the first senator to the last senator in the given order. This procedure will last until the end of voting. All the senators who have lost their rights will be skipped during the procedure.
Suppose every senator is smart enough and will play the best strategy for his own party. Predict which party will finally announce the victory and change the Dota2 game. The output should be "Radiant"
or "Dire"
.
Example 1:
Example 2:
Constraints:
n
== senate.length
n
<= 104senate[i]
is either 'R'
or 'D'
.MarsgoatMay 4, 2023
看答案用兩個queue解的版本
看解答學到很多,這樣就可以不用每次都往後找人ban,時間複雜度從變成
我覺得這題蠻有趣的啊,不知道為何倒讚這麼多。
MarsgoatMay 4, 2023
沒有想到解,所以看解答+1
附帶一個 Python queue 寫法,不但要先 import queue,速度還比 deque 慢
Ron ChenThu, May 4, 2023