# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
1095257 |
2024-10-01T16:46:02 Z |
buzdi |
Mobile (BOI12_mobile) |
C++17 |
|
318 ms |
63080 KB |
#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 |
1 |
Correct |
1 ms |
348 KB |
Output is correct |
2 |
Correct |
0 ms |
348 KB |
Output is correct |
3 |
Incorrect |
1 ms |
348 KB |
Output isn't correct |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
348 KB |
Output is correct |
2 |
Incorrect |
0 ms |
344 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
348 KB |
Output is correct |
2 |
Correct |
1 ms |
604 KB |
Output is correct |
3 |
Correct |
2 ms |
348 KB |
Output is correct |
4 |
Correct |
1 ms |
604 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2 ms |
604 KB |
Output is correct |
2 |
Incorrect |
2 ms |
604 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2 ms |
604 KB |
Output is correct |
2 |
Incorrect |
2 ms |
604 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2 ms |
600 KB |
Output is correct |
2 |
Incorrect |
2 ms |
616 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
20 ms |
2648 KB |
Output is correct |
2 |
Incorrect |
21 ms |
2652 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
20 ms |
2904 KB |
Output is correct |
2 |
Correct |
22 ms |
3448 KB |
Output is correct |
3 |
Correct |
24 ms |
3932 KB |
Output is correct |
4 |
Correct |
32 ms |
4032 KB |
Output is correct |
5 |
Correct |
28 ms |
4556 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
23 ms |
5976 KB |
Output is correct |
2 |
Incorrect |
23 ms |
3060 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
29 ms |
3420 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
30 ms |
4188 KB |
Output is correct |
2 |
Incorrect |
29 ms |
3416 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
132 ms |
31644 KB |
Output is correct |
2 |
Incorrect |
153 ms |
15884 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
141 ms |
15952 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
160 ms |
37896 KB |
Output is correct |
2 |
Incorrect |
164 ms |
19060 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
165 ms |
19024 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
196 ms |
44116 KB |
Output is correct |
2 |
Incorrect |
194 ms |
22160 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
192 ms |
22252 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
213 ms |
50516 KB |
Output is correct |
2 |
Incorrect |
227 ms |
25428 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
220 ms |
25424 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
278 ms |
63080 KB |
Output is correct |
2 |
Incorrect |
318 ms |
31528 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
283 ms |
31764 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |