https://codeforces.com/contest/1535/problem/C
题目大意:
给定一个字符串s,由 1 0 ?组成:?每次都可以任意替换成0或者1
问我们这个子字符串中,能够组成010101这样两两互不相等的字符串的数量最大是多少?
input
3
0?10
???
?10??1100
output
8
6
25
#include<bits/stdc++.h>
using namespace std;
typedef long long LL;
const LL N=2e5+7;
LL f[N][2];
int main()
{
cin.tie(0); cout.tie(0); ios::sync_with_stdio(false);
LL T=1;
cin>>T;
while(T--)
{
memset(f,0,sizeof f);
string s;
cin>>s;
s="?"+s;
LL ans=0;
for(LL i=1;i<s.size();i++)
{
if(s[i]=='0') f[i][1]=f[i-1][0]+1;
else if(s[i]=='1') f[i][0]=f[i-1][1]+1;
else
{
f[i][1]=f[i-1][0]+1;
f[i][0]=f[i-1][1]+1;
}
ans+=max(f[i][1],f[i][0]);
}
cout<<ans<<endl;
}
return 0;
}
标签:Educational,Rated,LL,cin,状态机,字符串
From: https://www.cnblogs.com/Vivian-0918/p/17319833.html