find a way to escape--hdu1593

题目链接 :

http://acm.hdu.edu.cn/showproblem.php?pid=1593

找到二者角速度相等时水中人的R,在此之前二者保持在一条直线上,之后水中的人沿直线到岸边S点匀速运动,岸上的人也匀速圆周运动到S点;

 #include<stdio.h>
#include<iostream>
#include<algorithm>
#include<string.h>
#include<math.h>
#define N 1100
#define PI 4*atan(1)
using namespace std; int main()
{
int r,v1,v2;
double t1,t2,R;
while(scanf("%d %d %d",&r,&v1,&v2)!=EOF)
{
R=v1*r*1.0/v2;
t1=(r-R)/v1;
t2=PI*r*1.0/v2;
if(t1<t2)
printf("Yes\n");
else
printf("No\n");
}
return ;
}
上一篇:angular中的MVVM模式


下一篇:Java调用Javascript、Python算法总结