代码拉取完成,页面将自动刷新
/*
* @Description:
* @Version: 1.0
* @Author: Vicro
* @Date: 2020-11-25 14:44:59
* @LastEditTime: 2020-11-25 19:31:48
* @FilePath: \Leetcode\649.dota-2-参�??�?.cpp
*/
/*
* @lc app=leetcode.cn id=649 lang=cpp
*
* [649] Dota2 参�??�?
*/
// @lc code=start
#include <iostream>
// #include <string>
using namespace std;
class Solution {
public:
string predictPartyVictory(string senate) {
bool R = true, D = true;
int person = 0;
while (D && R)
{
R = false;
D = false;
for (int i = 0; i < senate.size(); i++)
{
if (senate[i] == 'R')
{
R = true;
if (person < 0)
senate[i] = '0';
person++;
}
else if (senate[i] == 'D')
{
D = true;
if (person > 0)
senate[i] = '0';
person--;
}
}
}
return person > 0 ? "Radiant" : "Dire";
}
};
int main(){
Solution sol1;
string A;
A = sol1.predictPartyVictory("RDDRRD");
cout << A << endl;
system("pause");
return 0;
}
// @lc code=end
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。