For a string of bits (i.e., zeros and ones), Bobo computes the -value of by playing the following game.
Formally,
Now, Bobo has a bit string subjecting to changes, where the -th change is to flip all the bits among for given , . Find the -value modulo 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 and .
The second line contains bits .
For the following lines, the -th line contains two integers and .
输出
For each change, output an integer which denotes the -value modulo .
样例
标准输入 复制文本 |
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. . And it becomes 111
after the second change. .
来源
第六届中国大学生程序设计竞赛总决赛