A15083 | Binary Deque
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Slavic has an array of length $n$ consisting only of zeroes and ones. In one operation, he removes either the first or the last element of the array.
What is the minimum number of operations Slavic has to perform such that the total sum of the array is equal to $s$ after performing all the operations? In case the sum $s$ can't be obtained after any amount of operations, you should output -1.
What is the minimum number of operations Slavic has to perform such that the total sum of the array is equal to $s$ after performing all the operations? In case the sum $s$ can't be obtained after any amount of operations, you should output -1.
输入格式
The first line contains a single integer $t$ ( $1 \leq t \leq 10^4$ ) — the number of test cases.
The first line of each test case contains two integers $n$ and $s$ ( $1 \leq n, s \leq 2 \cdot 10^5$ ) — the length of the array and the needed sum of elements.
The second line of each test case contains $n$ integers $a_i$ ( $0 \leq a_i \leq 1$ ) — the elements of the array.
It is guaranteed that the sum of $n$ over all test cases doesn't exceed $2 \cdot 10^5$ .
The first line of each test case contains two integers $n$ and $s$ ( $1 \leq n, s \leq 2 \cdot 10^5$ ) — the length of the array and the needed sum of elements.
The second line of each test case contains $n$ integers $a_i$ ( $0 \leq a_i \leq 1$ ) — the elements of the array.
It is guaranteed that the sum of $n$ over all test cases doesn't exceed $2 \cdot 10^5$ .
输出格式
For each test case, output a single integer — the minimum amount of operations required to have the total sum of the array equal to $s$ , or -1 if obtaining an array with sum $s$ isn't possible.
输入输出样例
输入 #1
7 3 1 1 0 0 3 1 1 1 0 9 3 0 1 0 1 1 1 0 0 1 6 4 1 1 1 1 1 1 5 1 0 0 1 1 0 16 2 1 1 0 0 1 0 0 1 1 0 0 0 0 0 1 1 6 3 1 0 1 0 0 0
输出 #1
0 1 3 2 2 7 -1
In the first test case, the sum of the whole array is $1$ from the beginning, so we don't have to make any operations.
In the second test case, the sum of the array is $2$ and we want it to be equal to $1$ , so we should remove the first element. The array turns into $[1, 0]$ , which has a sum equal to $1$ .
In the third test case, the sum of the array is $5$ and we need it to be $3$ . We can obtain such a sum by removing the first two elements and the last element, doing a total of three operations. The array turns into $[0, 1, 1, 1, 0, 0]$ , which has a sum equal to $3$ .
In the second test case, the sum of the array is $2$ and we want it to be equal to $1$ , so we should remove the first element. The array turns into $[1, 0]$ , which has a sum equal to $1$ .
In the third test case, the sum of the array is $5$ and we need it to be $3$ . We can obtain such a sum by removing the first two elements and the last element, doing a total of three operations. The array turns into $[0, 1, 1, 1, 0, 0]$ , which has a sum equal to $3$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted