CF560B.Gerald is into Art

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

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×b1a_{1}×b_{1} rectangle, the paintings have shape of a a2×b2a_{2}×b_{2} and a3×b3a_{3}×b_{3} 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?

输入格式

The first line contains two space-separated numbers a1a_{1} and b1b_{1} — the sides of the board. Next two lines contain numbers a2,b2,a3a_{2},b_{2},a_{3} and b3b_{3} — the sides of the paintings. All numbers ai,bia_{i},b_{i} in the input are integers and fit into the range from 11 to 10001000 .

输出格式

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

输入输出样例

  • 输入#1

    3 2
    1 3
    2 1
    

    输出#1

    YES
    
  • 输入#2

    5 5
    3 3
    3 3
    

    输出#2

    NO
    
  • 输入#3

    4 2
    2 3
    1 2
    

    输出#3

    YES
    

说明/提示

That's how we can place the pictures in the first test:

And that's how we can do it in the third one.

首页