CF1860B.Fancy Coins

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Monocarp is going to make a purchase with cost of exactly mm burles.

He has two types of coins, in the following quantities:

  • coins worth 11 burle: a1a_1 regular coins and infinitely many fancy coins;
  • coins worth kk burles: aka_k 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 mm . 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 tt ( 1t31041 \le t \le 3 \cdot 10^4 ) — the number of testcases.

The only line of each testcase contains four integers m,k,a1m, k, a_1 and aka_k ( 1m1081 \le m \le 10^8 ; 2k1082 \le k \le 10^8 ; 0a1,ak1080 \le a_1, a_k \le 10^8 ) — 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 22 fancy coins worth 11 burle and 33 fancy coins worth 33 (since k=3k=3 ) burles to get 1111 total burles with 55 total fancy coins.

In the second testcase, Monocarp has a lot of regular coins of both types. He can use 1111 regular coins worth 11 burle, for example. Notice that Monocarp doesn't have to minimize the total number of used coins. That way he uses 00 fancy coins.

In the third testcase, Monocarp can use 55 regular coins worth 11 burle and 11 regular coin worth 33 burles. That will get him to 88 total burles when he needs 1111 . So, 11 fancy coin worth 33 burles is enough.

首页