标签:五个 ons not ase cin win ras imp cte
There are n employees in Alternative Cake Manufacturing (ACM). They are now voting on some very important question and the leading world media are trying to predict the outcome of the vote.
Each of the employees belongs to one of two fractions: depublicans or remocrats, and these two fractions have opposite opinions on what should be the outcome of the vote. The voting procedure is rather complicated:
You know the order employees are going to vote and that they behave optimal (and they also know the order and who belongs to which fraction). Predict the outcome of the vote.
The first line of the input contains a single integer n (1?≤?n?≤?200?000) — the number of employees.
The next line contains n characters. The i-th character is ‘D‘ if the i-th employee is from depublicans fraction or ‘R‘ if he is from remocrats.
Print ‘D‘ if the outcome of the vote will be suitable for depublicans and ‘R‘ if remocrats will win.
5
DDRRR
D
6
DDRRRR
R
Consider one of the voting scenarios for the first sample:
题意:可能有点难懂,说的是有两个分派R和D
样列:DDRRR
第一个是D表态说第五个人出局(R),那么出局人没有表态权利
第二个是D表态说第三个人出局(R),同上
那么剩下4(R),说第二个人出局(D)
一轮结束
第二局第一个人说第四个人出局,好,R全军覆没,D保留
问的也是最后保留的是谁
解法:
1 自己人当然不能让自己人出局啊
2 有机会轮到自己时,一定是让对方出局,最容易想到的是让离自己最近的对方出局,例如第一个D让第三个R出局
3 直到有一个全军覆没,保留的胜利
4 那么就算一个模拟贪心,实际上最多也就玩两次也有结果了,用vector超时了,改set
1 #include<bits/stdc++.h> 2 typedef long long LL; 3 typedef unsigned long long ULL; 4 typedef long double LD; 5 using namespace std; 6 set<int>Md,Mr; 7 int flag[400000]; 8 int main(){ 9 int n; 10 string s; 11 cin>>n>>s; 12 for(int i=0;i<n;i++){ 13 if(s[i]==‘D‘){ 14 Md.insert(i); 15 }else{ 16 Mr.insert(i); 17 } 18 } 19 int i=-1; 20 while(Md.size()&&Mr.size()){ 21 i=(i+1)%n; 22 if(flag[i]) continue; 23 if(s[i]==‘D‘){ 24 auto it=Mr.upper_bound(i); 25 if(it==Mr.end()){ 26 it=Mr.begin(); 27 } 28 flag[*it]=1; 29 Mr.erase(it); 30 }else{ 31 auto it=Md.upper_bound(i); 32 if(it==Md.end()){ 33 it=Md.begin(); 34 } 35 flag[*it]=1; 36 Md.erase(it); 37 } 38 } 39 if(Md.size()){ 40 cout<<"D"<<endl; 41 }else{ 42 cout<<"R"<<endl; 43 } 44 return 0; 45 }
Codeforces Round #388 (Div. 2) C
标签:五个 ons not ase cin win ras imp cte
原文地址:http://www.cnblogs.com/yinghualuowu/p/7223333.html