码迷,mamicode.com
首页 > 其他好文 > 详细

find a way to escape--hdu1593

时间:2015-04-15 00:48:43      阅读:191      评论:0      收藏:0      [点我收藏+]

标签:

 

题目链接 :

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

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

 

 1 #include<stdio.h>
 2 #include<iostream>
 3 #include<algorithm>
 4 #include<string.h>
 5 #include<math.h>
 6 #define N 1100
 7 #define PI 4*atan(1)
 8 using namespace std;
 9 
10 int main()
11 {
12     int r,v1,v2;
13     double t1,t2,R;
14     while(scanf("%d %d %d",&r,&v1,&v2)!=EOF)
15     {
16         R=v1*r*1.0/v2;
17         t1=(r-R)/v1;
18         t2=PI*r*1.0/v2;
19         if(t1<t2)
20             printf("Yes\n");
21         else
22             printf("No\n");
23     }
24     return 0;
25 }

 

find a way to escape--hdu1593

标签:

原文地址:http://www.cnblogs.com/zhengguiping--9876/p/4427315.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!