测评会员优惠活动进行中 · 开通 VIP,有效期内测评不限次 VIP 优惠中 · 测评不限次 立即查看

A12260. Binary Numbers AND Sum

编程题 普及/提高-

题目描述

You are given two huge binary integer numbers $a$ and $b$ of lengths $n$ and $m$ respectively. You will repeat the following process: if $b > 0$ , then add to the answer the value $a~ \&~ b$ and divide $b$ by $2$ rounding down (i.e. remove the last digit of $b$ ), and repeat the process again, otherwise stop the process.

The value $a~ \&~ b$ means bitwise AND of $a$ and $b$ . Your task is to calculate the answer modulo $998244353$ .

Note that you should add the value $a~ \&~ b$ to the answer in decimal notation, not in binary. So your task is to calculate the answer in decimal notation. For example, if $a = 1010_2~ (10_{10})$ and $b = 1000_2~ (8_{10})$ , then the value $a~ \&~ b$ will be equal to $8$ , not to $1000$ .

输入格式

The first line of the input contains two integers $n$ and $m$ ( $1 \le n, m \le 2 \cdot 10^5$ ) — the length of $a$ and the length of $b$ correspondingly.

The second line of the input contains one huge integer $a$ . It is guaranteed that this number consists of exactly $n$ zeroes and ones and the first digit is always $1$ .

The third line of the input contains one huge integer $b$ . It is guaranteed that this number consists of exactly $m$ zeroes and ones and the first digit is always $1$ .

输出格式

Print the answer to this problem in decimal notation modulo $998244353$ .

输入输出样例

输入 #1
4 4
1010
1101
输出 #1
12
输入 #2
4 5
1001
10101
输出 #2
11

说明/提示

The algorithm for the first example:

1. add to the answer $1010_2~ \&~ 1101_2 = 1000_2 = 8_{10}$ and set $b := 110$ ;
2. add to the answer $1010_2~ \&~ 110_2 = 10_2 = 2_{10}$ and set $b := 11$ ;
3. add to the answer $1010_2~ \&~ 11_2 = 10_2 = 2_{10}$ and set $b := 1$ ;
4. add to the answer $1010_2~ \&~ 1_2 = 0_2 = 0_{10}$ and set $b := 0$ .

So the answer is $8 + 2 + 2 + 0 = 12$ .

The algorithm for the second example:

1. add to the answer $1001_2~ \&~ 10101_2 = 1_2 = 1_{10}$ and set $b := 1010$ ;
2. add to the answer $1001_2~ \&~ 1010_2 = 1000_2 = 8_{10}$ and set $b := 101$ ;
3. add to the answer $1001_2~ \&~ 101_2 = 1_2 = 1_{10}$ and set $b := 10$ ;
4. add to the answer $1001_2~ \&~ 10_2 = 0_2 = 0_{10}$ and set $b := 1$ ;
5. add to the answer $1001_2~ \&~ 1_2 = 1_2 = 1_{10}$ and set $b := 0$ .

So the answer is $1 + 8 + 1 + 0 + 1 = 11$ .
上一题 去做题 下一题