Grave | 프로그래밍의 벗 PivotOJ
PivotOJ

Grave

시간 제한: 2000ms메모리 제한: 256MB출처: NEERC Northern Subregional 2014BOJ 10378
이 문제는 본문 이미지 일부가 표시되지 않습니다. 텍스트만으로 풀이가 어려울 수 있습니다.

문제

Gerard develops a Halloween computer game. The game is played on a rectangular graveyard with a rectangular chapel in it. During the game, the player places new rectangular graves on the graveyard. The grave should completely fit inside graveyard territory and should not overlap with the chapel. The grave may touch borders of the graveyard or the chapel.

[이미지 1]

Gerard asked you to write a program that determines whether it is possible to place a new grave of given size or there is no enough space for it.

입력

The first line of the input file contains two pairs of integers: x1, y1, x2, y2 (−109 ≤ x1 < x2 ≤ 109; −109 ≤ y1 < y2 ≤ 109) — coordinates of bottom left and top right corners of the graveyard. The second line also contains two pairs of integers x3, y3, x4, y4 (x1 < x3 < x4 < x2; y1 < y3 < y4 < y2) — coordinates of bottom left and top right corners of the chapel.

The third line contains two integers w, h — width and height of the new grave (1 ≤ w, h ≤ 109). Side with length w should be placed along OX axis, side with length h — along OY axis.

출력

The only line of the output file should contain single word: “Yes”, if it is possible to place the new grave, or “No”, if there is not enough space for it.

예제

예제 1

입력
1 1 11 8
2 3 8 6
3 2
출력
Yes

예제 2

입력
1 1 11 8
2 3 8 6
4 3
출력
No
이 문제는 채점 준비 중입니다. 테스트 데이터가 확보되면 제출이 가능합니다.