CF1860B.Fancy Coins
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Monocarp is going to make a purchase with cost of exactly m burles.
He has two types of coins, in the following quantities:
- coins worth 1 burle: a1 regular coins and infinitely many fancy coins;
- coins worth k burles: ak regular coins and infinitely many fancy coins.
Monocarp wants to make his purchase in such a way that there's no change — the total worth of provided coins is exactly m . He can use both regular and fancy coins. However, he wants to spend as little fancy coins as possible.
What's the smallest total number of fancy coins he can use to make a purchase?
输入格式
The first line contains a single integer t ( 1≤t≤3⋅104 ) — the number of testcases.
The only line of each testcase contains four integers m,k,a1 and ak ( 1≤m≤108 ; 2≤k≤108 ; 0≤a1,ak≤108 ) — the cost of the purchase, the worth of the second type of coin and the amounts of regular coins of both types, respectively.
输出格式
For each testcase, print a single integer — the smallest total number of fancy coins Monocarp can use to make a purchase.
输入输出样例
输入#1
4 11 3 0 0 11 3 20 20 11 3 6 1 100000000 2 0 0
输出#1
5 0 1 50000000
说明/提示
In the first testcase, there are no regular coins of either type. Monocarp can use 2 fancy coins worth 1 burle and 3 fancy coins worth 3 (since k=3 ) burles to get 11 total burles with 5 total fancy coins.
In the second testcase, Monocarp has a lot of regular coins of both types. He can use 11 regular coins worth 1 burle, for example. Notice that Monocarp doesn't have to minimize the total number of used coins. That way he uses 0 fancy coins.
In the third testcase, Monocarp can use 5 regular coins worth 1 burle and 1 regular coin worth 3 burles. That will get him to 8 total burles when he needs 11 . So, 1 fancy coin worth 3 burles is enough.