1792Two Circles and a Rectangle

1792   Two Circles and a Rectangle

题目描述

Give you two circles and a rectangle, your task is to judge wheather the two circles can be put into the rectangle with no part of circles outside the retangle.

输入格式:

There are multiple test cases. In every test cast, there are four float-point numbers:

a, b, r1, r2

where, a and b are two sides of the rectangle, r1 and r2 are radii of the two circls.

输出格式:

Print a "Yes", if the circles can be put into the rectangle. Otherwise, print a "No".

You can safely assume x < y, where x and y are float-point numbers, if x < y + 0.01.

输入样例 复制
5 4 1 1
5 4 1.5 2

输出样例 复制
Yes
No

说明

1
7
通过提交
时空限制2000ms/64mb
题目来源
评测方式在线评测
题目类型
难        度