题目
你身上有 aa 个 nn 元的硬币和 bb 个 11 元的硬币。请问能不能在不找零的情况下购买 ss 元的物品。
Input
第一行一个数 qq (1 \le q \le 10^41≤q≤104) —代表有 qq 组数据
测试案例的只有一行包含四个整数 aa, bb, nn 和 SS (1 \le a, b, n, S \le 10^91≤a,b,n,S≤109) — 价值nn的硬币数量,价值11的硬币数量,价值nn和所需的总价值
Output
For the ii-th test case print the answer on it — YES (without quotes) if there exist such xx and yy that if you take xx coins of value nn and yy coins of value 11, then the total value of taken coins will be SS, and NO otherwise.
You may print every letter in any case you want (so, for example, the strings yEs, yes, Yes and YES will all be recognized as positive answer).
Sample 1
一些话
t了一发,nnd
正篇
原因是题目考察的套路不熟悉,拆分下这道题
t组数据,while(t--) 注意每一组用到的数据要初始化
计算可以用几个n元来支付(就是这点了,套路不熟练只想到模拟)↓
1.前提条件:
要计算s里有几个n
套路:
int cnt = s / n;
2.前提条件:
去除s里的n
套路:
以上一个套路为基础
s -= (cnt) * n;
因为n的数量是有限制的,如果减多了就补回多的部分;
if(cnt > a)
s+= (cnt - a) * n;
到这里这道题基本就搞定了,
下面是完整代码
#include <iostream> using namespace std; int main(){ int t,a,b,n,s; cin >> t; while(t--){ int cnt = 0; cin >> a>> b >> n >> s; cnt = s/n; s -= cnt * n; if(cnt > a){ s += (cnt-a) * n; } if(s - b > 0) puts("NO"); else puts("YES"); } return 0; }