A13223 | Infinite Prefixes
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
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 \dots$ 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 $cnt_{0, q} - cnt_{1, q}$ , where $cnt_{0, q}$ is the number of occurrences of 0 in $q$ , and $cnt_{1, 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".
Calculate the number of prefixes of $t$ with balance equal to $x$ . The balance of some string $q$ is equal to $cnt_{0, q} - cnt_{1, q}$ , where $cnt_{0, q}$ is the number of occurrences of 0 in $q$ , and $cnt_{1, 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 \le T \le 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 \le n \le 10^5$ , $-10^9 \le x \le 10^9$ ) — the length of string $s$ and the desired balance, respectively.
The second line contains the binary string $s$ ( $|s| = n$ , $s_i \in \{\text{0}, \text{1}\}$ ).
It's guaranteed that the total sum of $n$ doesn't exceed $10^5$ .
Next $2T$ lines contain descriptions of test cases — two lines per test case. The first line contains two integers $n$ and $x$ ( $1 \le n \le 10^5$ , $-10^9 \le x \le 10^9$ ) — the length of string $s$ and the desired balance, respectively.
The second line contains the binary string $s$ ( $|s| = n$ , $s_i \in \{\text{0}, \text{1}\}$ ).
It's guaranteed that the total sum of $n$ doesn't exceed $10^5$ .
输出格式
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$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted