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,如需转载请自行联系原作者
相关文章
|
6月前
|
Java
POJ-2406-Power Strings
POJ-2406-Power Strings
16 0
|
人工智能 BI
UVa1554 - Binary Search
UVa1554 - Binary Search
49 0
|
Web App开发 Java 数据安全/隐私保护
HDOJ(HDU) 1563 Find your present!(异或)
HDOJ(HDU) 1563 Find your present!(异或)
235 0
HDOJ/HDU 1062 Text Reverse(字符串翻转~)
HDOJ/HDU 1062 Text Reverse(字符串翻转~)
111 0
HDOJ/HDU 1321 Reverse Text(倒序输出~)
HDOJ/HDU 1321 Reverse Text(倒序输出~)
99 0
|
存储
HDOJ/HDU 1073 Online Judge(字符串处理~)
HDOJ/HDU 1073 Online Judge(字符串处理~)
97 0
转:肉饼的自白:You&#39;ve got to find what you love
《You've got to find what you love》是乔布斯2005年在斯坦福大学毕业典礼上的演讲,当我第一次看到这个演讲视频的时候,被彻底震住了。回顾自己跌跌撞撞的人生道路,就是一个不断寻找然后坚持自己钟爱事业的过程。
1371 0
|
C++
[LeetCode]--242. Valid Anagram
Given two strings s and t, write a function to determine if t is an anagram of s. For example, s = “anagram”, t = “nagaram”, return true. s = “rat”, t = “car”, return false. Note: You
1377 0