1478. Game Theory

For a string s1sns_1\dots s_n of nn bits (i.e., zeros and ones), Bobo computes the ff-value of s1sns_1\dots s_n by playing the following game.

  • If all the bits are zero, the game ends.
  • If there are kk ones in the bit string, Bobo flips the kk-th bit, i.e., sks_k.
  • The ff-value of the bit string is the number of flips Bobo has performed before the game ends.

Formally,

  • If s1==sn=0s_1 = \dots = s_n = 0, f(s1sn)=0f(s_1 \dots s_n) = 0.
  • Otherwise, assuming that k=s1++snk = s_1 + \dots + s_n, f(s1sn)=f(s1sk1sksk+1sn)+1f(s_1 \dots s_n) = f(s_1 \dots s_{k - 1} \overline{s_k} s_{k + 1} \dots s_n) + 1 where c\overline{c} denotes the flip of the bit cc such as 0=1\overline{0} = 1 and 1=0\overline{1} = 0.

Now, Bobo has a bit string s1sns_1 \dots s_n subjecting to qq changes, where the ii-th change is to flip all the bits among slisris_{l_i} \dots s_{r_i} for given lil_i, rir_i. Find the ff-value modulo 998244353998244353 of the bit string after each change.

输入

Note from SCNUOJ admin: we don't have the official test data sets, and all tests used here are randomly generated, so expect weak tests and/or even wrong input format. Contact one of the admins if you wish to improve the tests.

The input consists of several test cases terminated by end-of-file. For each test case,

The first line contains two integers nn and qq.

The second line contains nn bits s1sns_1 \dots s_n.

For the following qq lines, the ii-th line contains two integers lil_i and rir_i.

  • 1n2×1051 \le n \le 2 \times 10^5
  • 1q2×1051 \le q \le 2 \times 10^5
  • si0,1s_i \in {0, 1} for each 1in1 \leq i \leq n
  • 1lirin1 \leq l_i \leq r_i \leq n for each 1iq1 \leq i \leq q
  • In each input, the sum of nn does not exceed 2×1052 \times 10^5. The sum of qq does not exceed 2×1052 \times 10^5.

输出

For each change, output an integer which denotes the ff-value modulo 998244353998244353.

样例

标准输入 复制文本
3 2
010
1 2
2 3
5 1
00000
1 5
标准输出 复制文本
1
3
5
标准输入 复制文本
1 1
0
1 1
标准输出 复制文本
1

提示

For the first test case, the string becomes 100 after the first change. f(100)=f(000)+1=1f(\texttt{100}) = f(\texttt{000}) + 1 = 1. And it becomes 111 after the second change. f(111)=f(110)+1=f(100)+2=f(000)+3=3f(\texttt{111}) = f(\texttt{110}) + 1 = f(\texttt{100}) + 2 = f(\texttt{000}) + 3 = 3.

来源

第六届中国大学生程序设计竞赛总决赛

登录以提交代码。
单点时限 1 秒
内存限制 128 MB
提交 6
通过 4