小明正在玩一个“翻硬币”的游戏。
桌上放着排成一排的若干硬币。我们用 * 表示正面,用 o 表示反面(是小写字母,不是零)。
比如,可能情形是:**oo***oooo
如果同时翻转左边的两个硬币,则变为:oooo***oooo
现在小明的问题是:如果已知了初始状态和要达到的目标状态,每次只能同时翻转相邻的两个硬币,那么对特定的局面,最少要翻动多少次呢?
我们约定:把翻动相邻的两个硬币叫做一步操作,那么要求:
两行等长的字符串,分别表示初始状态和要达到的目标状态。每行的长度<1000
一个整数,表示最小操作步数。
o****o****
*o***o**o***
#include <iostream>
#include <queue>
#include <iomanip>
#include <math.h>
#include <vector>
#include <string>
#include <algorithm>
#include <map>
#include<cstring>
#include<ctype.h>
#include<math.h>
using namespace std;
int vx[1000];
//char A[1000];
//char B[1000];
int main(int argc, const char * argv[]) {
string A;
string B;
cin>>A;
cin>>B;
for(int i = 0 ; i < A.length();i++)
{
if(A[i] == B[i])
{
vx[i] = 0;
}else
{
vx[i] = 1;
}
}
int flag = 0;
int a = 0;
int b = 0;
int count = 0;
for(int i = 0 ; i < A.length();i++)
{
if(vx[i]==1)
{
if(flag == 0)
{
a=i;
flag=1;
}
else
{
b=i;
flag=0;
count = count + b-a;
}
}
}
cout<<count;
}