This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <iostream>
#include <algorithm>
#include <cassert>
#include <cmath>
#include <iomanip>
#include <vector>
#include <queue>
#include <map>
#include <set>
#define ll long long
using namespace std;
const int NMAX = 1e6;
const long double EPS = 1e-6;
struct Point {
long double x, y;
void read() {
cin >> x >> y;
}
}points[NMAX + 1];
int n, l, ind_st, i;
long double answer;
pair<int, long double> st[NMAX + 1];
long double Square(long double x) {
return x * x;
}
long double Distance(Point p1, Point p2) {
return sqrt(Square(p1.x - p2.x) + Square(p1.y - p2.y));
}
long double WhereBetter(Point p1, Point p2) {
return (long double)(Square(p2.x) + Square(p2.y) - Square(p1.x) - Square(p1.y)) / (long double)(2 * (p2.x - p1.x));
}
signed main()
{
ios::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
cin >> n >> l;
for (int i = 1; i <= n; i++) {
points[i].read();
}
i = 1;
while (i <= n) {
Point best_point = points[i];
int pos_best_point = i;
i++;
while (i <= n && points[i].x == points[i - 1].x) {
if (abs(points[i].y) < abs(best_point.y)) {
best_point = points[i];
pos_best_point = i;
}
i++;
}
if (ind_st >= 1 && WhereBetter(best_point, points[st[ind_st].first]) > l) {
continue;
}
while (ind_st >= 1 && WhereBetter(best_point, points[st[ind_st].first]) < st[ind_st].second) {
ind_st--;
}
if (ind_st == 0) {
st[++ind_st] = { pos_best_point, 1 };
}
else {
long double x = WhereBetter(best_point, points[st[ind_st].first]);
st[++ind_st] = { pos_best_point, x };
}
}
//for (int i = 1; i <= n; i++) {
// if (ind_st >= 1 && points[i].x == points[st[ind_st].first].x) {
// continue;
// }
// if (ind_st >= 1 && WhereBetter(points[i], points[st[ind_st].first]) > l) {
// continue;
// }
// while (ind_st >= 1 && WhereBetter(points[i], points[st[ind_st].first]) < st[ind_st].second) {
// ind_st--;
// }
// if (ind_st == 0) {
// st[++ind_st] = { i, 1 };
// }
// else {
// long double x = WhereBetter(points[i], points[st[ind_st].first]);
// st[++ind_st] = { i, x };
// }
//}
for (int i = 1; i <= ind_st; i++) {
answer = max(answer, max(Distance(points[st[i].first], { st[i].second, 0 }), Distance(points[st[i].first], { (i == ind_st ? l : st[i + 1].second - EPS), 0 })));
}
cout << fixed << setprecision(6) << answer << '\n';
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |