【Codeforces 608B】Hamming Distance Sum(前缀和)

该博客详细解释了如何利用前缀和方法解决Codeforces上的Hamming Distance Sum问题。通过计算两个二进制字符串间所有长度相等的子串的汉明距离之和,博主介绍了如何避免暴力求解,转而采用前缀和技巧降低复杂度,从而在限制时间内得到答案。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

Hamming Distance Sum

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|.


Example
Input
01
00111
Output
3
Input
0011
0110
Output
2


Note
For the first sample case, there are four contiguous

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值