codeforces 608BHamming Distance Sum

B - Hamming Distance Sum
Time Limit:2000MS     Memory Limit:262144KB     64bit IO Format:%I64d & %I64u

Description

Genos needs your help. He was asked to solve the following programming problem by Saitama:

The length of some string s is denoted |s|. The Hamming distance between two strings s and t of equal length is defined as , where si is the i-th character of s and ti is the i-th character of t. For example, the Hamming distance between string "0011" and string "0110" is |0 - 0| + |0 - 1| + |1 - 1| + |1 - 0| = 0 + 1 + 0 + 1 = 2.

Given two binary strings a and b, find the sum of the Hamming distances between a and all contiguous substrings of b of length |a|.

Input

The first line of the input contains binary string a (1 ≤ |a| ≤ 200 000).

The second line of the input contains binary string b (|a| ≤ |b| ≤ 200 000).

Both strings are guaranteed to consist of characters '0' and '1' only.

Output

Print a single integer — the sum of Hamming distances between a and all contiguous substrings of b of length |a|.

Sample Input

Input
01
00111
Output
3
Input
0011
0110
Output
2

Hint

For the first sample case, there are four contiguous substrings of b of length |a|: "00", "01", "11", and "11". The distance between "01" and "00" is |0 - 0| + |1 - 0| = 1. The distance between "01" and "01" is |0 - 0| + |1 - 1| = 0. The distance between "01" and "11" is|0 - 1| + |1 - 1| = 1. Last distance counts twice, as there are two occurrences of string "11". The sum of these edit distances is 1 + 0 + 1 + 1 = 3.

The second sample case is described in the statement.

应该算是前缀数组吧,没想到,模拟了一下;

#include<stdio.h>
#include<string.h>
#include<algorithm>
using namespace std;
int i,j,k,l,m,n;
int main()
{
	char s[220000];
	while(scanf("%s",s)!=EOF)
	{
		char c[220000];
		l=strlen(s);
		scanf("%s",c);
		int len=strlen(c);
		int help=len-l+1;
		int cnt=0;
		__int64 ans=0;//第九组测试数据特别大,超出了int,请用long long
		int flag=0;
		int nn=0;
		int mm=0;
		for(j=0;j<help;j++)
		{
			if(c[j]=='1')
			nn++;//1
			else
			mm++;//0
		}
		if(s[0]=='1')
		ans+=mm;
		else
		ans+=nn;
		for(i=1;i<l;i++)
		{
			if(c[i-1]=='1')
			nn--;
			else
			mm--;
			if(c[i+help-1]=='1')
			nn++;
			else
			mm++;
			if(s[i]=='1')
			ans+=mm;
			else
			ans+=nn;
		}
		printf("%I64d\n",ans);
	}
}



再附一个自己写的前缀数组:

#include<stdio.h>
#include<string.h>
#include<algorithm>
using namespace std;
char s[1100000],c[1100000];
int dp[2][1100000],i,j,k,l,m,n,p;
int main()
{
	while(scanf("%s%s",s+1,c+1)!=EOF)
	{
		l=strlen(s+1);
		int len=strlen(c+1);
		memset(dp,0,sizeof(dp));
		for(i=1;i<=len;i++)
		{
			dp[1][i]+=dp[1][i-1]+(c[i]=='1');
			dp[0][i]+=dp[0][i-1]+(c[i]=='0');
		}
		__int64 ans=0;
		for(i=1;i<=l;i++)
		{
			int help=len-l+i;
			if(s[i]=='1')
			ans+=dp[0][help]-dp[0][i-1];
			else
			ans+=dp[1][help]-dp[1][i-1];
		}
		printf("%I64d\n",ans);
	}
} 




  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值