摘要: 思路:看到这个题目就发现所需最短时间也就是房子和相遇点的最远距离具有凹凸性,很容易就想到了三分法枚举。找出所有房子的X坐标的最小最大值作为上下界。代码如下: 1 #include 2 #include 3 #include 4 #define M 50005 5 #include 6 #define inf 200005 7 #define eps 1e-8 8 using namespace std; 9 struct node10 {11 double x,y;12 }p[M];13 int n,cnt;14 double dis(node a,double b)15 {16 ... 阅读全文
posted @ 2013-10-08 19:39 _随心所欲_ 阅读(589) 评论(0) 推荐(0) 编辑