HDUOJ---The Moving Points

The Moving Points

Time Limit: 6000/3000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 612    Accepted Submission(s): 250

Problem Description
There are N points in total. Every point moves in certain direction and certain speed. We want to know at what time that the largest distance between any two points would be minimum. And also, we require you to calculate that minimum distance. We guarantee that no two points will move in exactly same speed and direction.
 
Input
The rst line has a number T (T <= 10) , indicating the number of test cases. For each test case, first line has a single number N (N <= 300), which is the number of points. For next N lines, each come with four integers X i, Y i, VX i and VY i (-10 6 <= X i, Y i <= 10 6, -10 2 <= VX i , VY i <= 10 2), (X i, Y i) is the position of the i th point, and (VX i , VY i) is its speed with direction. That is to say, after 1 second, this point will move to (X i + VX i , Y i + VY i).
 
Output
For test case X, output "Case #X: " first, then output two numbers, rounded to 0.01, as the answer of time and distance.
 
Sample Input
2 2 0 0 1 0 2 0 -1 0 2 0 0 1 0 2 1 -1 0
 
Sample Output
Case #1: 1.00 0.00 Case #2: 1.00 1.00
 
Source
 
Recommend
zhuyuanchen520
三分思路:
单调性查找就好....对时间
代码:
 1 #include<iostream>
 2 #include<vector>
 3 #include<cstdio>
 4 #include<cstring>
 5 #include<cstdlib>
 6 #include<cmath>
 7 #define MAX 1e9
 8 #define exp 1e-6
 9 using namespace std;
10    //设置结构体
11 typedef struct 
12 {
13     int x,y;
14     int px,py;
15 }point;
16 
17    //计算任意时间两点的距离
18 double das(point a,point b,double t )
19 {
20     return  sqrt(pow(((a.x+a.px*t)-(b.x+b.px*t)),2)+pow(((a.y+a.py*t)-(b.y+b.py*t)),2)); 
21 }
22    //判断两个数最大值....
23 double max( double a,double b)
24 {
25     return a>b?a:b; 
26 }
27 point po[305];
28  int main()
29  { 
30     int n,i,j,cnt=1,t;
31     double ll,rr,ml,mr,ans1,ans2;
32     scanf("%d",&t);
33     while(t--)
34     {
35       scanf("%d",&n);
36       for( i=1 ; i<=n ; i++ )
37       {
38        scanf("%d%d%d%d",&po[i].x,&po[i].y,&po[i].px,&po[i].py);
39        //cin>>po[i].x>>po[i].y>>po[i].px>>po[i].py;
40       }
41      //没有其他的办法,除了遍历之外
42       ll=0.0,rr=MAX;
43      while(rr-ll>exp)
44      {
45         ans1=ans2=0.0;
46         //ml=(ll+rr)/2.0;   //慢很多
47          //mr=(ml+rr)/2.0;
48         ml=(ll*2+rr)/3.0;       // r/3.0  较快
49         mr=(ll+rr*2)/3.0;       // 2*r/3.0
50        for( i=1 ; i<n ; i++ )  
51        {
52          for( j=i+1 ; j<=n ;j++ )
53          {
54              ans1=max(ans1,das(po[i],po[j],ml));  //对左边
55              ans2=max(ans2,das(po[i],po[j],mr));  //对右边
56          }
57        }
58         if( ans1<ans2 ) 
59               rr=mr;
60         else
61              ll=ml;
62      }
63        //得到时间ll or rr 都可以
64       ans1=0.0;
65       for(i=1 ; i<n ; i++ )
66        {
67          for(j=1+i ; j<=n ;j++)
68          {
69              ans1=max(ans1,das(po[i],po[j],ll));  //对左边ll/rr
70          }
71      }
72      printf("Case #%d: %.2lf %.2lf\n",cnt++,ll,ans1);
73     }
74     return 0;
75  }
View Code

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值