HDU 1593 find a way to escape

简介:

数学题。

题意是问你能不能逃脱。


当V1的 角速度大于 V2的时候,能够一直保持 V1,O(圆心),V2 三点一线。


跑到一定距离。角速度小于的时候,就以三点一线为初始状态直接跑直线。


#include<cstdio>
#include<cstring>
#include<string>
#include<queue>
#include<algorithm>
#include<map>
#include<stack>
#include<iostream>
#include<list>
#include<set>
#include<cmath>
#define INF 0x7fffffff
#define eps 1e-6
#define LL long long
using namespace std;
const double PI=3.141592654;
double r,v1,v2;
int main()
{
    while(scanf("%lf%lf%lf",&r,&v1,&v2)!=EOF)
    {
        double v=(v1*r)/v2;
        if(v>=r)puts("Yes");
        else
        {
            double t1=(r-v)*v2;
            double t2=(PI*r)*v1;
            if(t1<t2)
                puts("Yes");
            else
                puts("No");
        }
    }
}





本文转自mfrbuaa博客园博客,原文链接:http://www.cnblogs.com/mfrbuaa/p/5155601.html,如需转载请自行联系原作者
相关文章
HDU-1062,Text Reverse(字符串处理 and 栈)
HDU-1062,Text Reverse(字符串处理 and 栈)
HDOJ/HDU 1062 Text Reverse(字符串翻转~)
HDOJ/HDU 1062 Text Reverse(字符串翻转~)
122 0
|
Web App开发 Java 数据安全/隐私保护
HDOJ(HDU) 1563 Find your present!(异或)
HDOJ(HDU) 1563 Find your present!(异或)
244 0
HDOJ/HDU 1321 Reverse Text(倒序输出~)
HDOJ/HDU 1321 Reverse Text(倒序输出~)
105 0
转:肉饼的自白:You&#39;ve got to find what you love
《You've got to find what you love》是乔布斯2005年在斯坦福大学毕业典礼上的演讲,当我第一次看到这个演讲视频的时候,被彻底震住了。回顾自己跌跌撞撞的人生道路,就是一个不断寻找然后坚持自己钟爱事业的过程。
1378 0
&nbsp; &quot; &amp; &lt; &gt 等html字符转义
常用表: No. 文字表記 10进制 16进制 文字   Comment 001 &quot; &#34; &#x22; """   quotation mark = APL quote 002 &amp; &#38; &#x26; "&"   ampersand 003 &lt; ...
2534 0
[LeetCode] Find the Closest Palindrome 寻找最近的回文串
Given an integer n, find the closest integer (not including itself), which is a palindrome. The 'closest' is defined as absolute difference minimized between two integers.
2000 0
|
C++
[LeetCode]--290. Word Pattern
Given a pattern and a string str, find if str follows the same pattern. Here follow means a full match, such that there is a bijection between a letter in pattern and a non-empty word in s
1212 0