比赛 20241023 评测结果 AAWWWWWWWWWWWWWWWWWW
题目名称 Cowreography 最终得分 10
用户昵称 小金 运行时间 0.231 s
代码语言 C++ 内存使用 4.71 MiB
提交时间 2024-10-23 11:34:48
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<cmath>
using namespace std;
char a[1000010],b[1000010];
int n,k;
long long ans;
int main()
{
	freopen("cowreography.in","r",stdin);
    freopen("cowreography.out","w",stdout);
	scanf("%d%d",&n,&k);
	scanf("%s",a+1);
	scanf("%s",b+1);
	int bja=1,bjb=1;
	while(bja<=n&&bjb<=n)
	{
		while(a[bja]=='0') bja++;
		while(b[bjb]=='0') bjb++;
		ans+=abs(bjb-bja);
		bja++;
		bjb++;
	}
	printf("%lld",ans);
	return 0;
}