CF1579F.Array Stabilization (AND version)
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
You are given an array a[0…n−1]=[a0,a1,…,an−1] of zeroes and ones only. Note that in this problem, unlike the others, the array indexes are numbered from zero, not from one.
In one step, the array a is replaced by another array of length n according to the following rules:
- First, a new array a→d is defined as a cyclic shift of the array a to the right by d cells. The elements of this array can be defined as ai→d=a(i+n−d)modn , where (i+n−d)modn is the remainder of integer division of i+n−d by n . It means that the whole array a→d can be represented as a sequence $$$$a^{\rightarrow d} = [a_{n - d}, a_{n - d + 1}, \ldots, a_{n - 1}, a_0, a_1, \ldots, a_{n - d - 1}] $$
- Then each element of the array a_i is replaced by a\_i \\,\\&\\, a^{\\rightarrow d}\_i , where \\& is a logical "AND" operator.
For example, if a = \[0, 0, 1, 1\] and d=1 , then a^{\\rightarrow d} = \[1, 0, 0, 1\] and the value of a after the first step will be \[0 \\,\\&\\, 1, 0 \\,\\&\\, 0, 1 \\,\\&\\, 0, 1 \\,\\&\\, 1\] , that is \[0, 0, 0, 1\] .
The process ends when the array stops changing. For a given array a$$, determine whether it will consist of only zeros at the end of the process. If yes, also find the number of steps the process will take before it finishes.
输入格式
The first line contains an integer t ( 1≤t≤1000 ) — the number of test cases.
The next 2t lines contain descriptions of the test cases.
The first line of each test case description contains two integers: n ( 1≤n≤106 ) — array size and d ( 1≤d≤n ) — cyclic shift offset. The second line of the description contains n space-separated integers ai ( 0≤ai≤1 ) — elements of the array.
It is guaranteed that the sum of n over all test cases does not exceed 106 .
输出格式
Print t lines, each line containing the answer to the corresponding test case. The answer to a test case should be a single integer — the number of steps after which the array will contain only zeros for the first time. If there are still elements equal to 1 in the array after the end of the process, print -1.
输入输出样例
输入#1
5 2 1 0 1 3 2 0 1 0 5 2 1 1 0 1 0 4 2 0 1 0 1 1 1 0
输出#1
1 1 3 -1 0
说明/提示
In the third sample test case the array will change as follows:
- At the beginning a=[1,1,0,1,0] , and a→2=[1,0,1,1,0] . Their element-by-element "AND" is equal to $$$$[1 ,&, 1, 1 ,&, 0, 0 ,&, 1, 1 ,&, 1, 0 ,&, 0] = [1, 0, 0, 1, 0] $$
- Now a = \[1, 0, 0, 1, 0\] , then a^{\\rightarrow 2} = \[1, 0, 1, 0, 0\] . Their element-by-element "AND" equals to $$ [1 ,&, 1, 0 ,&, 0, 0 ,&, 1, 1 ,&, 0, 0 ,&, 0] = [1, 0, 0, 0, 0] $$
- And finally, when a = \[1, 0, 0, 0, 0\] we get a^{\\rightarrow 2} = \[0, 0, 1, 0, 0\] . Their element-by-element "AND" equals to $$ [1 ,&, 0, 0 ,&, 0, 0 ,&, 1, 0 ,&, 0, 0 ,&, 0] = [0, 0, 0, 0, 0] $$
In the fourth sample test case, the array will not change as it shifts by 2 to the right, so each element will be calculated as 0 \\,\\&\\, 0 or 1 \\,\\&\\, 1$$ thus not changing its value. So the answer is -1, the array will never contain only zeros.