标签:des style blog http color os io for
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=4816
题目大意:
在海平面上找一点投放潜水艇,投放的准确地点存在误差D,求最大的潜水深度期望。
题目分析:
即在海平面下再画一条折线,然后用间距为2×D的竖线将图截出,求截出的图形的最大面积。
解法:
可以看出当将两竖线不断右移的过程中,除了一种状态以外,其余状态对于面积的影响均为单调的。
此状态为当左边竖线所相交的折线为向上趋势并且右边竖线所相交的折线为向下趋势并且在到达端点前,两竖线与折线的交点的高度为相同的值时,此时面积最大。
所以,可以直接将两竖线从左往右移动,每次移动一个端点的距离,如果出现该情况则计算中途可能出现的最大面积,否则记录当前最大面积,即可于O(N)时间内得出结果。
————————————————————————————————————————————————————————————————————————————————
PS:我写这题在HDU上不用long double就过不了。也完全不知道怎么用double过了,有知道怎么办的请务必告诉我!三分就不要了……
代码(2390MS):
1 #include <cstdio> 2 #include <iostream> 3 #include <cstring> 4 #include <algorithm> 5 using namespace std; 6 typedef long long LL; 7 typedef long double LDB; 8 9 const int MAXN = 200010; 10 const LDB EPS = 1e-6; 11 12 inline int sgn(LDB x) { 13 return (x > EPS) - (x < -EPS); 14 } 15 16 int x[MAXN], y[MAXN]; 17 int n, d, L, T; 18 19 struct Game { 20 LDB a, b, c; 21 Game() {} 22 Game(LDB a, LDB b, LDB c): a(a), b(b), c(c) {} 23 Game operator - (const Game &rhs) const { 24 return Game(a - rhs.a, b - rhs.b, c - rhs.c); 25 } 26 LDB val_at(LDB x) { 27 return a * x * x + b * x + c; 28 } 29 LDB max_val(LDB l, LDB r) { 30 LDB res = max(val_at(l), val_at(r)); 31 if(sgn(a) < 0) { 32 LDB t = - b / 2 / a; 33 if(sgn(l - t) <= 0 && sgn(t - r) <= 0) 34 res = val_at(t); 35 } 36 return res; 37 } 38 }; 39 40 Game get(int pos, LDB v = 0.0) { 41 LDB k = LDB(y[pos + 1] - y[pos]) / (x[pos + 1] - x[pos]); 42 LDB t = y[pos] - k * x[pos]; 43 LDB a = k / 2, b = t, c = -((k / 2) * x[pos] + t) * x[pos]; 44 return Game(a, 2 * v * a + b, a * v * v + b * v + c); 45 } 46 47 LDB area(int pos) { 48 return (y[pos] + y[pos + 1]) / 2.0 * (x[pos + 1] - x[pos]); 49 } 50 51 LDB solve() { 52 if(d == 0) { 53 int res = 0; 54 for(int i = 1; i <= n; ++i) res = max(res, y[i]); 55 return res; 56 } 57 LDB nowx = 0, res = 0, s = 0; 58 int l = 1, r = 1; 59 while(r < n && x[r + 1] <= d) 60 s += area(r++); 61 if(r == n) res = s; 62 while(r < n) { 63 LDB minx = min(x[l + 1] - nowx, x[r + 1] - nowx - d); 64 res = max(res, s + (get(r, d) - get(l)).max_val(nowx, nowx + minx)); 65 nowx += minx; 66 if(sgn(x[l + 1] - nowx) == 0) s -= area(l++), nowx = x[l]; 67 if(sgn(x[r + 1] - nowx - d) == 0) s += area(r++), nowx = x[r] - d; 68 } 69 return res / d; 70 } 71 72 int main() { 73 scanf("%d", &T); 74 while(T--) { 75 scanf("%d%d", &n, &L); 76 for(int i = 1; i <= n; ++i) scanf("%d%d", &x[i], &y[i]); 77 x[n + 1] = x[n]; 78 scanf("%d", &d); d <<= 1; 79 printf("%.3f\n", (double)solve()); 80 } 81 }
HDU 4816 Bathysphere(数学)(2013 Asia Regional Changchun),布布扣,bubuko.com
HDU 4816 Bathysphere(数学)(2013 Asia Regional Changchun)
标签:des style blog http color os io for
原文地址:http://www.cnblogs.com/oyking/p/3900322.html