A16223 | Money Trees
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Luca is in front of a row of $n$ trees. The $i$ -th tree has $a_i$ fruit and height $h_i$ .
He wants to choose a contiguous subarray of the array $[h_l, h_{l+1}, \dots, h_r]$ such that for each $i$ ( $l \leq i < r$ ), $h_i$ is divisible $^{\dagger}$ by $h_{i+1}$ . He will collect all the fruit from each of the trees in the subarray (that is, he will collect $a_l + a_{l+1} + \dots + a_r$ fruits). However, if he collects more than $k$ fruits in total, he will get caught.
What is the maximum length of a subarray Luca can choose so he doesn't get caught?
$^{\dagger}$ $x$ is divisible by $y$ if the ratio $\frac{x}{y}$ is an integer.
He wants to choose a contiguous subarray of the array $[h_l, h_{l+1}, \dots, h_r]$ such that for each $i$ ( $l \leq i < r$ ), $h_i$ is divisible $^{\dagger}$ by $h_{i+1}$ . He will collect all the fruit from each of the trees in the subarray (that is, he will collect $a_l + a_{l+1} + \dots + a_r$ fruits). However, if he collects more than $k$ fruits in total, he will get caught.
What is the maximum length of a subarray Luca can choose so he doesn't get caught?
$^{\dagger}$ $x$ is divisible by $y$ if the ratio $\frac{x}{y}$ is an integer.
输入格式
The first line contains a single integer $t$ ( $1 \leq t \leq 1000$ ) — the number of test cases.
The first of each test case line contains two space-separated integers $n$ and $k$ ( $1 \leq n \leq 2 \cdot 10^5$ ; $1 \leq k \leq 10^9$ ) — the number of trees and the maximum amount of fruits Luca can collect without getting caught.
The second line of each test case contains $n$ space-separated integers $a_i$ ( $1 \leq a_i \leq 10^4$ ) — the number of fruits in the $i$ -th tree.
The third line of each test case contains $n$ space-separated integers $h_i$ ( $1 \leq h_i \leq 10^9$ ) — the height of the $i$ -th tree.
The sum of $n$ over all test cases does not exceed $2 \cdot 10^5$ .
The first of each test case line contains two space-separated integers $n$ and $k$ ( $1 \leq n \leq 2 \cdot 10^5$ ; $1 \leq k \leq 10^9$ ) — the number of trees and the maximum amount of fruits Luca can collect without getting caught.
The second line of each test case contains $n$ space-separated integers $a_i$ ( $1 \leq a_i \leq 10^4$ ) — the number of fruits in the $i$ -th tree.
The third line of each test case contains $n$ space-separated integers $h_i$ ( $1 \leq h_i \leq 10^9$ ) — the height of the $i$ -th tree.
The sum of $n$ over all test cases does not exceed $2 \cdot 10^5$ .
输出格式
For each test case output a single integer, the length of the maximum length contiguous subarray satisfying the conditions, or $0$ if there is no such subarray.
输入输出样例
输入 #1
5 5 12 3 2 4 1 8 4 4 2 4 1 4 8 5 4 1 2 6 2 3 1 3 12 7 9 10 2 2 4 1 10 11 1 7 10 2 6 3 1 5 10 6 72 24 24 12 4 4 2
输出 #1
3 2 1 0 3
In the first test case, Luca can select the subarray with $l=1$ and $r=3$ .
In the second test case, Luca can select the subarray with $l=3$ and $r=4$ .
In the third test case, Luca can select the subarray with $l=2$ and $r=2$ .
In the second test case, Luca can select the subarray with $l=3$ and $r=4$ .
In the third test case, Luca can select the subarray with $l=2$ and $r=2$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted