CF1295B.Infinite Prefixes
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
You are given string s of length n consisting of 0-s and 1-s. You build an infinite string t as a concatenation of an infinite number of strings s , or t=ssss… For example, if s= 10010, then t= 100101001010010...
Calculate the number of prefixes of t with balance equal to x . The balance of some string q is equal to cnt0,q−cnt1,q , where cnt0,q is the number of occurrences of 0 in q , and cnt1,q is the number of occurrences of 1 in q . The number of such prefixes can be infinite; if it is so, you must say that.
A prefix is a string consisting of several first letters of a given string, without any reorders. An empty prefix is also a valid prefix. For example, the string "abcd" has 5 prefixes: empty string, "a", "ab", "abc" and "abcd".
输入格式
The first line contains the single integer T ( 1≤T≤100 ) — the number of test cases.
Next 2T lines contain descriptions of test cases — two lines per test case. The first line contains two integers n and x ( 1≤n≤105 , −109≤x≤109 ) — the length of string s and the desired balance, respectively.
The second line contains the binary string s ( ∣s∣=n , si∈{0,1} ).
It's guaranteed that the total sum of n doesn't exceed 105 .
输出格式
Print T integers — one per test case. For each test case print the number of prefixes or −1 if there is an infinite number of such prefixes.
输入输出样例
输入#1
4 6 10 010010 5 3 10101 1 0 0 2 0 01
输出#1
3 0 1 -1
说明/提示
In the first test case, there are 3 good prefixes of t : with length 28 , 30 and 32 .