cf1059D. Nature Reserve(三分)
程序员文章站
2022-07-02 13:39:39
题意 "题目链接" Sol 欲哭无泪啊qwq。。。。昨晚一定是智息了qwq 说一个和标算不一样做法吧。。 显然$x$轴是可以三分的,半径是可以二分的。 恭喜你获得了一个TLE的做法。。 然后第二维的二分是没有必要的,直接拿圆的标准方程推一下取个最大值就行了。。。。。昨晚没想到qwq给数学老师丢脸了。 ......
题意
sol
欲哭无泪啊qwq。。。。昨晚一定是智息了qwq
说一个和标算不一样做法吧。。
显然\(x\)轴是可以三分的,半径是可以二分的。
恭喜你获得了一个tle的做法。。
然后第二维的二分是没有必要的,直接拿圆的标准方程推一下取个最大值就行了。。。。。昨晚没想到qwq给数学老师丢脸了。。
#include<cstdio> #include<cmath> #include<algorithm> #define double long double using namespace std; const double eps = 1e-7, inf = 1e18; const int maxn = 1e5 + 10; inline int read() { char c = getchar(); int x = 0, f = 1; while(c < '0' || c > '9') {if(c == '-') f = -1; c = getchar();} while(c >= '0' && c <= '9') x = x * 10 + c - '0',c = getchar(); return x * f; } int n, up, down; double max(double a, double b) {return a > b ? a : b;} double min(double a, double b) {return a < b ? a : b;} struct node { double x, y; }a[maxn]; int check(int x, int y) { if(x < 0 && y > 0) return 1; else return 0; } double mxr; double sqr(double x) { return x * x; } double f(double x) { double mx = 0; for(int i = 1; i <= n; i++) mx = max(mx, fabs((sqr(a[i].x - x) + sqr(a[i].y)) / (2.0 * a[i].y))); return mx; } int main() { n = read(); double l = inf, r = -inf; for(int i = 1; i <= n; i++) { a[i].x = read(), a[i].y = read(); up = min(up, a[i].y); mxr = max(a[i].y, mxr); l = min(a[i].x, l); r = max(a[i].x, r); } if(check(up, mxr)) {puts("-1"); return 0;} mxr = inf; if(up < 0) for(int i = 1; i <= n; i++) a[i].y = -a[i].y; int tim = 100; while(tim--) { double x = (2 * l + r) / 3, y = (l + 2 * r) / 3; f(x) < f(y) ? r = y : l = x; // printf("%lf %lf\n", f(x), f(y)); } printf("%.10lf", f(l)); return 0; }