bzoj 1857

三分,对于单凸的函数(单调的也可以),可以找出最值。

这道题可以感性认识一下。。。。。。

 1 /**************************************************************
 2     Problem: 1857
 3     User: idy002
 4     Language: C++
 5     Result: Accepted
 6     Time:32 ms
 7     Memory:1272 kb
 8 ****************************************************************/
 9
10 #include <cstdio>
11 #include <cmath>
12 #include <iostream>
13 #define eps 1e-5
14 using namespace std;
15
16 int sg( double x ) { return (x>-eps)-(x<eps); }
17 struct Vector {
18     double x, y;
19     Vector(){}
20     Vector( double x, double y ):x(x),y(y){}
21     Vector operator+( const Vector & b ) const { return Vector(x+b.x,y+b.y); }
22     Vector operator-( const Vector & b ) const { return Vector(x-b.x,y-b.y); }
23     Vector operator*( double k ) const { return Vector(x*k,y*k); }
24     void read() { scanf( "%lf%lf", &x, &y ); }
25     double dis() { return sqrt(x*x+y*y); }
26 };
27 typedef Vector Point;
28
29 Point A, B, C, D, E1, E2, E, F1, F2, F;
30 double P, Q, R;
31
32 inline double gettime() {
33     return (A-E).dis()/P+(F-D).dis()/Q+(E-F).dis()/R;
34 }
35 double onCD() {
36     double t1, t2;
37     F1 = C, F2 = D;
38     while( (F1-F2).dis() >= eps ) {
39         Vector step = (F2-F1)*(1.0/3.0);
40         F = F1+step;
41         t1 = gettime();
42         F = F +step;
43         t2 = gettime();
44         if( t1-t2<0.0 ) {
45             F2 = F2-step;
46         } else {
47             F1 = F1+step;
48         }
49     }
50     F = F1;
51     return gettime();
52 }
53 double onAB() {
54     double t1, t2;
55     E1 = A, E2 = B;
56     while( (E1-E2).dis() >= eps ) {
57         Vector step = (E2-E1)*(1.0/3.0);
58         E = E1+step;
59         t1 = onCD();
60         E = E +step;
61         t2 = onCD();
62         if( t1-t2<0.0 ) {
63             E2 = E2-step;
64         } else {
65             E1 = E1+step;
66         }
67     }
68     E = E1;
69     return onCD();
70 }
71 int main() {
72     A.read();
73     B.read();
74     C.read();
75     D.read();
76     scanf( "%lf%lf%lf", &P, &Q, &R );
77     printf( "%.2lf\n", onAB() );
78 }

时间: 2024-10-25 21:06:46

bzoj 1857的相关文章

bzoj 1857: [Scoi2010]传送带 三分

题目链接 1857: [Scoi2010]传送带 Time Limit: 1 Sec  Memory Limit: 64 MBSubmit: 934  Solved: 501[Submit][Status][Discuss] Description 在一个2维平面上有两条传送带,每一条传送带可以看成是一条线段.两条传送带分别为线段AB和线段CD.lxhgww在AB上的移动速度为P,在CD上的移动速度为Q,在平面上的移动速度R.现在lxhgww想从A点走到D点,他想知道最少需要走多长时间 Inpu

【BZOJ 1857】 [Scoi2010]传送带

1857: [Scoi2010]传送带 Time Limit: 1 Sec Memory Limit: 64 MB Submit: 737 Solved: 387 [Submit][Status][Discuss] Description 在一个2维平面上有两条传送带,每一条传送带可以看成是一条线段.两条传送带分别为线段AB和线段CD.lxhgww在AB上的移动速度为P,在CD上的移动速度为Q,在平面上的移动速度R.现在lxhgww想从A点走到D点,他想知道最少需要走多长时间 Input 输入数

传送带(bzoj 1857)

Description 在一个2维平面上有两条传送带,每一条传送带可以看成是一条线段.两条传送带分别为线段AB和线段CD.lxhgww在AB上的移动速度为P,在CD上的移动速度为Q,在平面上的移动速度R.现在lxhgww想从A点走到D点,他想知道最少需要走多长时间 Input 输入数据第一行是4个整数,表示A和B的坐标,分别为Ax,Ay,Bx,By 第二行是4个整数,表示C和D的坐标,分别为Cx,Cy,Dx,Dy 第三行是3个整数,分别是P,Q,R Output 输出数据为一行,表示lxhgww

BZOJ 1857 传送带

三分套三分. #include<iostream> #include<cstdio> #include<cstring> #include<algorithm> #include<cmath> #define eps 1e-4 using namespace std; double x,y,v1,v2,v0; struct point { double x,y; point (double x,double y):x(x),y(y) {} poi

BZOJ 1857 传送带 (三分套三分)

在一个2维平面上有两条传送带,每一条传送带可以看成是一条线段.两条传送带分别为线段AB和线段CD.lxhgww在AB上的移动速度为P,在CD上的移动速度为Q,在平面上的移动速度R.现在lxhgww想从A点走到D点,他想知道最少需要走多长时间 Input输入数据第一行是4个整数,表示A和B的坐标,分别为Ax,Ay,Bx,By 第二行是4个整数,表示C和D的坐标,分别为Cx,Cy,Dx,Dy 第三行是3个整数,分别是P,Q,ROutput输出数据为一行,表示lxhgww从A点走到D点的最短时间,保留

【BZOJ 1857】【SCOI 2010】传送带

三分套三分,虽然简单,但是也得掌握,,, 时间复杂度$O(log_{1.5}^2 n)$ 一开始WA好几次发现是快速读入里没有return,这样也能过样例? #include<cmath> #include<cstdio> #include<cstring> #include<algorithm> using namespace std; const double eps = 1e-3; int in() { int k = 0, fh = 1; char

BZOJ 1857 SCOI 2010 传送带 三分法

题目大意:给出平面上两条线段,在这两条线段上走有一定的速度,在其他的平面上走也有一定的速度,问从A点到D点最少需要多少时间. 思路:好像是三分吧,大概感受一下吧,反正也不会证. CODE: #include <cmath> #include <cstdio> #include <iomanip> #include <cstring> #include <iostream> #include <algorithm> #define EP

【BZOJ】初级水题列表——献给那些想要进军BZOJ的OIers(自用,怕荒废了最后的六月考试月,刷刷水题,水水更健康)

BZOJ初级水题列表——献给那些想要进军BZOJ的OIers 代码长度解释一切! 注:以下代码描述均为C++ RunID User Problem Result Memory Time Code_Length 695765 Eolv 1000 Accepted 804 kb 0 ms 118 B 739478 Eolv 2463 Accepted 804 kb 0 ms 134 B 696662 Eolv 1968 Accepted 1272 kb 48 ms 137 B 739546 Eolv

BZOJ 1013: [JSOI2008]球形空间产生器sphere

二次联通门 : BZOJ 1013: [JSOI2008]球形空间产生器sphere /* BZOJ 1013: [JSOI2008]球形空间产生器sphere 高斯消元 QAQ SB的我也能终于能秒题了啊 设球心的坐标为(x,y,z...) 那么就可以列n+1个方程,化化式子高斯消元即可 */ #include <cstdio> #include <iostream> #include <cstring> #define rg register #define Max