time limit per test: 2 seconds
memory limit per test: 256 megabytes
input: standard input
output: standard output
XXI Berland Annual Fair is coming really soon! Traditionally fair consists of $n$ booths, arranged in a circle. The booths are numbered $1$through $n$ clockwise with $n$ being adjacent to $1$. The $i$-th booths sells some candies for the price of $a_i$i burles per item. Each booth has an unlimited supply of candies.
Polycarp has decided to spend at most $T$ burles at the fair. However, he has some plan in mind for his path across the booths:
- at first, he visits booth number $1$;
- if he has enough burles to buy exactly one candy from the current booth, then he buys it immediately;
- then he proceeds to the next booth in the clockwise order (regardless of if he bought a candy or not).
Polycarp’s money is finite, thus the process will end once he can no longer buy candy at any booth.
Calculate the number of candies Polycarp will buy.
Input
The first line contains two integers $n$ and $T (1≤n≤2⋅10^5, 1≤T≤10^{18})$ — the number of booths at the fair and the initial amount of burles Polycarp has.
The second line contains nn integers $a_1,a_2,…,a_n (1≤a_i≤10^9)$ — the price of the single candy at booth number $i$.
Output
Print a single integer — the total number of candies Polycarp will buy.
Examples
input
1 | 3 38 |
output
1 | 10 |
input
1 | 5 21 |
output
1 | 6 |
Note
Let’s consider the first example. Here are Polycarp’s moves until he runs out of money:
- Booth $1$, buys candy for $5$, $T=33$;
- Booth $2$, buys candy for $2$, $T=31$;
- Booth $3$, buys candy for $5$, $T=26$;
- Booth $1$, buys candy for $5$, $T=21$;
- Booth $2$, buys candy for $2$, $T=19$;
- Booth $3$, buys candy for $5$, $T=14$;
- Booth $1$, buys candy for $5$, $T=9$;
- Booth $2$, buys candy for $2$, $T=7$;
- Booth $3$, buys candy for $5$, $T=2$;
- Booth $1$, buys no candy, not enough money;
- Booth $2$, buys candy for $2$, $T=0$.
No candy can be bought later. The total number of candies bought is $10$.
In the second example he has $1$ burle left at the end of his path, no candy can be bought with this amount.
题意
$n$种糖果围成一圈,每种糖果每个$a_i$元。初始时你有$T$元,接着你从$1$开始绕圈。一旦你发现有糖果能买,你就买一个。直到一个糖果都买不起。问最后买了多少个糖果。
Slove
首先对数据进行处理:$n$种糖果全部买一次需要多少钱,找到$n$种糖果中最便宜的价格
然后计算所有的糖果均能买的圈数有多少。
将剩余的钱进行进行按圈数模拟:一圈一圈的模拟肯定是不行的,稳稳地超时,所以需要进行优化
将剩余的钱数与当前所在位置的糖果价格进行比较,更新钱数,并记录每一圈结束后的次大值,当次大值等于最小值的时候,证明已经不能买除了最便宜的糖果外的其他糖果,此时结束循环。将剩余的钱数除以最小值(向下取整)可得到最终剩余的钱能买糖果数
Code
代码用时:77ms
1 | /************************************************************************* |