Description
给定一个长度为 n 的序列 {a},现在要从中选出一段连续子序列 [l,r],使得 L≤r∑i=lai≤R,求方案数。
(1≤n≤105,|ai|≤105,1≤L,R≤109)
Source
Solution
我们可以枚举 r=1∼n,求出对于每个 r 有多少 l 符合条件,累加即是答案。
先预处理出前缀和数组 pre,那么 r∑i=lai 的值为 prer−prel−1,当且仅当 L≤prer−prel−1≤R 时 l 符合条件。
变形一下这个式子,可得 prer−R≤prel−1≤prer−L 。
所以我们只需要找到有多少个 prel−1(l∈[1,r]) 在 [prer−R,prer−L] 区间内。单点修改,区间查询,可以离散化后用树状数组维护,这里我使用了动态开点线段树,原理相同(不要忘记初始时插入 pre0=0)。时间复杂度为 O(nlogn) 。
Code
1 |
|
Related Issues not found
Please contact @heartlessly to initialize the comment