Educational Codeforces Round 55:B. Vova and Trophies
阿新 • • 發佈:2018-12-01
contest class ali spa href lse -a ces out
B. Vova and Trophies
題目鏈接:https://codeforc.es/contest/1082/problem/B
題意:
給出一個“GS”串,有一次交換兩個字母的機會,問最大的連續“G”串是多少。
題解:
在末尾後面放一個哨兵“S”,然後掃兩遍,維護S左邊和右邊連續的“G”分別有多少個,然後求最大就可以了。
註意並不是所有的串都可以通過交換使長度變大這種情況,比如 “SGGGGS”,處理一下就好了。
代碼如下:
#include <bits/stdc++.h> using namespace std; const int N = 1e5+5; char s[N];int sum1[N],sum2[N]; int main(){ int n; cin>>n; scanf("%s",s); int len = strlen(s),tot=0; s[len]=‘S‘; for(int i=0;i<=len;i++){ if(s[i]==‘G‘) tot++; else{ sum1[i]=tot; tot=0; } } tot=0; for(int i=len;i>=0;i--){if(s[i]==‘G‘) tot++; else{ sum2[i]=tot; tot=0; } } int ans=0,cnt=0; for(int i=0;i<=len;i++){ if(s[i]==‘S‘) ans=max(ans,sum1[i]+sum2[i]); else cnt++; } if(ans!=cnt) ans++; //處理一下 cout<<ans; return 0; }
Educational Codeforces Round 55:B. Vova and Trophies