ADACOINS - Ada and Coins


Ada the Ladybug has several coins in her wallet. She is wondering, how many different values [sum of some subset of coins] is she able to make (in given range).

Input

The first line contains two integer numbers 1 ≤ N ≤ 104, 1 ≤ Q ≤ 5*105, the number of coins and number of queries.

The next line contains N integer numbers 1 ≤ Ai ≤ 105, the values of coins in Ada's wallet.

Afterward, Q lines follow, each containing two integers 1 ≤ B ≤ E ≤ 105, beginning and end of range, for which Ada wants to know the answer

Output

For each query, output the number of distinct values Ada can generate in given range.

Example Input

10 10
1 2 2 3 5 30 31 90 100 100
1 1
1 5
3 6
2 9
30 100
1 10000
30 32
5 12
9 29
190 220

Example Output

1
5
4
8
40
231
3
8
5
25

Output Subsets

[  1,    1]: 1 
[  1,    5]: 1 2 3 4 5 
[  3,    6]: 3 4 5 6 
[  2,    9]: 2 3 4 5 6 7 8 9 
[ 30,  100]: 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 61 62 63 64 65 66 67 68 69 70 71 72 73 74 90 91 92 93 94 95 96 97 98 99 100 
[  1,10000]: 1 2 3 4 5 6 7 8 9 10 11 12 13 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 61 62 63 64 65 66 67 68 69 70 71 72 73 74 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 290 291 292 293 294 295 296 297 298 299 300 301 302 303 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 351 352 353 354 355 356 357 358 359 360 361 362 363 364 
[ 30,   32]: 30 31 32 
[  5,   12]: 5 6 7 8 9 10 11 12 
[  9,   29]: 9 10 11 12 13 
[190,  220]: 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 220

hide comments
rapiram31: 2021-10-12 12:22:41

bitset + prefix sum

changyouren: 2021-09-22 12:36:19

bitset
use scanf not fast IO

jpfr12: 2021-07-27 22:11:37

@pratik_gl thank you for the link :)

pratik_gl: 2020-12-30 13:21:20

Those who still couldn't get it. Watch Errichto's bitset video: https://youtu.be/jqJ5s077OKo?t=558

sachin_19: 2020-06-22 06:31:42

test case 15 damn use scanf printf don't trust on fast I/O it wont work

Last edit: 2020-06-22 06:32:47
pavan_putra: 2020-06-14 08:10:35

@rising_stark if we had infinite supply of coins, then we could make any sum out of it as 1 can be repeated infinite times :)

tejusr: 2020-05-14 19:20:37

Excellent question!! Learnt how to use bitset. Thanks @Morass.

rising_stark: 2020-04-23 02:38:49

If we have an infinite supply of each coins then how to do this problem.
This question restricts to only one choice of each of the coins.
Please help. I am new to competitive programming.

maneeshkrpatel: 2020-02-05 21:39:43

Nice problem (learned bitset)

zarif_2002: 2019-12-07 08:42:58

Use bitset. It's a really good technique. Save a template so that you can use it in some contests.


Added by:Morass
Date:2017-02-11
Time limit:1s
Source limit:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Languages:All