Codeforces Round#787 A. Food for Animals

[Codeforces Round #787 (Div. 3)]

A. Food for Animals

time limit per test:1 second
memory limit per test:256 megabytes
input:standard input
output:standard output

In the pet store on sale there are:

  • a packs of dog food;
  • b packs of cat food;
  • c packs of universal food (such food is suitable for both dogs and cats).

Polycarp has x dogs and y cats. Is it possible that he will be able to buy food for all his animals in the store? Each of his dogs and each of his cats should receive one pack of suitable food for it.

Input

The first line of input contains an integer tt (1≤t≤10000) — the number of test cases in the input.

Then tt lines are given, each containing a description of one test case. Each description consists of five integers a,b,c,x and y (0≤a,b,c,x,y≤100000000).

Output

For each test case in a separate line, output:

  • YES, if suitable food can be bought for each of xx dogs and for each of yy cats;
  • NO else.

You can output YES and NO in any case (for example, strings yEs, yes, Yes and YES will be recognized as a positive response).

Example

input
7
1 1 4 2 3
0 0 0 0 0
5 5 0 4 6
1 1 1 1 1
50000000 50000000 100000000 100000000 100000000
0 0 0 100000000 100000000
1 3 2 2 5
output
YES
YES
NO
YES
YES
NO
NO
#include <iostream>
using namespace std;
int n;
int a[10010],b[10010],c[10010],x[10010],y[10010];
int main()
{
	cin>>n;
	for(int i=0;i<n;i++)
	{
		cin>>a[i]>>b[i]>>c[i]>>x[i]>>y[i];
	}
	for(int i=0;i<n;i++)
	{
		int sum1=a[i]+b[i]+c[i];
		int sum2=x[i]+y[i];
		if(sum2>sum1)//进行特判,肯定不满足条件
		{
			cout<<"NO"<<endl;
		}
		else 
		{
			if(a[i]+c[i]>=x[i]&&b[i]+c[i]>=y[i])
			{
				cout<<"YES"<<endl;
			}
			else{
				cout<<"NO"<<endl;
			}
		}
	}
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值