CF1083F.The Fair Nut and Amusing Xor
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
The Fair Nut has two arrays a and b , consisting of n numbers. He found them so long ago that no one knows when they came to him.
The Fair Nut often changes numbers in his arrays. He also is interested in how similar a and b are after every modification.
Let's denote similarity of two arrays as the minimum number of operations to apply to make arrays equal (every operation can be applied for both arrays). If it is impossible, similarity will be equal −1 .
Per one operation you can choose a subarray with length k ( k is fixed), and change every element ai , which belongs to the chosen subarray, to ai⊕x ( x can be chosen), where ⊕ denotes the bitwise XOR operation.
Nut has already calculated the similarity of the arrays after every modification. Can you do it?
Note that you just need to calculate those values, that is you do not need to apply any operations.
输入格式
The first line contains three numbers n , k and q ( 1≤k≤n≤2⋅105 , 0≤q≤2⋅105 ) — the length of the arrays, the length of the subarrays, to which the operations are applied, and the number of queries.
The second line contains n integers a1,a2,…,an ( 0≤ai<214 ) — elements of array a .
The third line contains n integers b1,b2,…,bn ( 0≤bi<214 ) — elements of array b .
Each of the next q lines describes query and contains string s and two integers p and v ( 1≤p≤n , 0≤v<214 ) — array, which this query changes («a» or «b» without quotes), index of changing element and its new value.
输出格式
On the first line print initial similarity of arrays a and b .
On the i -th of following q lines print similarity of a and b after applying first i modifications.
输入输出样例
输入#1
3 3 1 0 4 2 1 2 3 b 2 5
输出#1
-1 1
输入#2
3 2 2 1 3 2 0 0 0 a 1 0 b 1 1
输出#2
2 -1 2
说明/提示
In the first sample making arrays [0,4,2] and [1,2,3] is impossible with k=3 . After the modification, you can apply the operation with x=1 to the whole first array (its length is equal to k ), and it will be equal to the second array.
In order to make arrays equal in the second sample before changes, you can apply operations with x=1 on subarray [1,2] of a and with x=2 on subarray [2,3] of b .
After all queries arrays will be equal [0,3,2] and [1,0,0] . The same operations make them equal [1,2,2] .