Example
input
6
2 2 1 2
0 100 0 1
12 13 25 1
27 83 14 25
0 0 1 0
1000000000000000000 1000000000000000000 1000000000000000000 1000000000000000000
output
Copy
Yes
No
No
Yes
No
Yes
解析:
因为第二种人只能吃少的那种蛋糕,所以优先满足他们。
所以如果少的蛋糕数量少于第二种人 或者 多的蛋糕+少的蛋糕-第二种人的数量 小于 第一种人,则不成立。
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
const int N=1e5+5;
ll t,a,b,n,m;
int main(){
scanf("%lld",&t);
while(t--){
scanf("%lld%lld%lld%lld",&a,&b,&n,&m);
if(min(a,b)<m||max(a,b)+(min(a,b)-m)<n) cout<<"NO"<<endl;
else cout<<"YES"<<endl;
}
return 0;
}