您的位置:首页 > 其它

Codeforces Round #313 (Div. 2) B. Gerald is into Art

2015-07-23 10:09 337 查看
time limit per test2 seconds

memory limit per test256 megabytes

inputstandard input

outputstandard output

Gerald bought two very rare paintings at the Sotheby’s auction and he now wants to hang them on the wall. For that he bought a special board to attach it to the wall and place the paintings on the board. The board has shape of an a1 × b1 rectangle, the paintings have shape of a a2 × b2 and a3 × b3 rectangles.

Since the paintings are painted in the style of abstract art, it does not matter exactly how they will be rotated, but still, one side of both the board, and each of the paintings must be parallel to the floor. The paintings can touch each other and the edges of the board, but can not overlap or go beyond the edge of the board. Gerald asks whether it is possible to place the paintings on the board, or is the board he bought not large enough?

Input

The first line contains two space-separated numbers a1 and b1 — the sides of the board. Next two lines contain numbers a2, b2, a3 and b3 — the sides of the paintings. All numbers ai, bi in the input are integers and fit into the range from 1 to 1000.

Output

If the paintings can be placed on the wall, print “YES” (without the quotes), and if they cannot, print “NO” (without the quotes).

Sample test(s)

input

3 2

1 3

2 1

output

YES

input

5 5

3 3

3 3

output

NO

input

4 2

2 3

1 2

output

YES

意思很简单,首先给出一个白板的长和宽,然后再给出两个广告的长和宽,问这两个广告能不能都贴到白板上面去

只要考虑8种情况就好

#include<iostream>
using namespace std;
int main()
{
int n,m;
while(cin>>n>>m)
{
int length1,wide1,length2,wide2;
cin>>length1>>wide1;
cin>>length2>>wide2;
int ans=0;
int nut=0;
int a=0;
int b=0;
if(((length1<=n&&wide1<=m)||(length1<=m&&wide1<=n))&&((length2<=n&&wide2<=m)||(length2<=m&&wide2<=n)))
{
if((length1+length2<=m&&wide1<=n&&wide2<=n)||(length1+length2<=n&&wide1<=m&&wide2<=m))  ans=1;
if((length1+wide2<=m&&length2<=n&&wide1<=n)||(length1+wide2<=n&&length2<=m&&wide1<=m))  nut=1;
if((wide1+length2<=m&&length1<=n&&wide2<=n)||(wide1+length2<=n&&length1<=m&&wide2<=m))  a=1;
if((wide1+wide2<=m&&length1<=n&&length2<=n)||(wide1+wide2<=n&&length1<=m&&length2<=m))  b=1;
if(ans==1||nut==1||a==1||b==1)  cout<<"YES"<<endl;
else  cout<<"NO"<<endl;
}
else  cout<<"NO"<<endl;
}
return 0;
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  codeforces