首页
学习
活动
专区
圈层
工具
发布
首页
学习
活动
专区
圈层
工具
MCP广场
社区首页 >专栏 >【CodeForces】667A - Pouring Rain(数学)

【CodeForces】667A - Pouring Rain(数学)

作者头像
FishWang
发布2025-08-26 15:45:49
发布2025-08-26 15:45:49
9100
代码可运行
举报
运行总次数:0
代码可运行

题目链接:点击打开链接

A. Pouring Rain

time limit per test

1 second

memory limit per test

256 megabytes

input

standard input

output

standard output

A lot of people in Berland hates rain, but you do not. Rain pacifies, puts your thoughts in order. By these years you have developed a good tradition — when it rains, you go on the street and stay silent for a moment, contemplate all around you, enjoy freshness, think about big deeds you have to do.

Today everything had changed quietly. You went on the street with a cup contained water, your favorite drink. In a moment when you were drinking a water you noticed that the process became quite long: the cup still contained water because of rain. You decided to make a formal model of what was happening and to find if it was possible to drink all water in that situation.

Thus, your cup is a cylinder with diameter equals d centimeters. Initial level of water in cup equals h centimeters from the bottom.

You drink a water with a speed equals v milliliters per second. But rain goes with such speed that if you do not drink a water from the cup, the level of water increases on e centimeters per second. The process of drinking water from the cup and the addition of rain to the cup goes evenly and continuously.

Find the time needed to make the cup empty or find that it will never happen. It is guaranteed that if it is possible to drink all water, it will happen not later than after 104 seconds.

Note one milliliter equals to one cubic centimeter.

Input

The only line of the input contains four integer numbers d, h, v, e (1 ≤ d, h, v, e ≤ 104), where:

  • d — the diameter of your cylindrical cup,
  • h — the initial level of water in the cup,
  • v — the speed of drinking process from the cup in milliliters per second,
  • e — the growth of water because of rain if you do not drink from the cup.

Output

If it is impossible to make the cup empty, print "NO" (without quotes).

Otherwise print "YES" (without quotes) in the first line. In the second line print a real number — time in seconds needed the cup will be empty. The answer will be considered correct if its relative or absolute error doesn't exceed 10 - 4. It is guaranteed that if the answer exists, it doesn't exceed 104.

Examples

input

代码语言:javascript
代码运行次数:0
运行
复制
1 2 3 100

output

代码语言:javascript
代码运行次数:0
运行
复制
NO

input

代码语言:javascript
代码运行次数:0
运行
复制
1 1 1 1

output

代码语言:javascript
代码运行次数:0
运行
复制
YES
3.659792366325

Note

In the first example the water fills the cup faster than you can drink from it.

In the second example area of the cup's bottom equals to

, thus we can conclude that you decrease the level of water by

centimeters per second. At the same time water level increases by 1 centimeter per second due to rain. Thus, cup will be empty in

seconds.

求出喝水速度,然后与进水速度比较就行了。题目看懂了就能做。

代码如下:

代码语言:javascript
代码运行次数:0
运行
复制
#include <cstdio>
#define PI 3.14159265 
int main()
{
	int d,h,v,e;
	double S;
	double v1,v2;
	double ans;
	scanf ("%d %d %d %d",&d,&h,&v,&e);
	S = d/2.0*d/2.0*PI;  
    v1 = v / S;  
    v2 = e;  
    ans = h / (v1 - v2);  
    if(v1 <= v2 || ans - 10000 > 0.0001)
		printf ("NO\n");  
    else
		printf ("YES\n%lf\n",ans);
	return 0;
}
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2025-08-26,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档