#include <bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
using namespace __gnu_pbds;
template <typename K> using hset = gp_hash_table<K, null_type>;
template <typename K, typename V> using hmap = gp_hash_table<K, V>;
using namespace std;
#define all(x) (x).begin(), (x).end()
#define pb push_back
#define eb emplace_back
#define smax(x, y) (x = max(x, y))
#define smin(x, y) (x = min(x, y))
using ld = long double;
using ll = long long;
template <typename T>
using vv = vector<vector<T>>;
using vi = vector<int>;
using ii = array<int, 2>;
using vii = vector<ii>;
using vvi = vv<int>;
using vll = vector<ll>;
using l2 = array<int, 2>;
using vl2 = vector<l2>;
using vvll = vv<ll>;
template <typename T>
using minq = priority_queue<T, vector<T>, greater<T>>;
template <typename T>
using maxq = priority_queue<T>;
const ll M = 1000000007;
#ifndef REFERENCE_DISCRETE_BINARY_SEARCH_H
#define REFERENCE_DISCRETE_BINARY_SEARCH_H
#include <iostream>
#include <functional>
template<typename IN>
IN discrete_binary_search(function<bool(IN)> predicate, IN low = 0, IN high = numeric_limits<IN>::max()) {
while (fabs(high - low) > 1e-4) {
IN middle = low + (high - low) / 2; // todo std::midpoint in cpp 2020
if (predicate(middle))
high = middle;
else low = middle;
}
return low;
}
#endif //REFERENCE_DISCRETE_BINARY_SEARCH_H
bool a_contains_b(const array<ld, 2>& a, const array<ld, 2> & b) {
return a[0] <= b[0] && b[1] <= a[1];
}
int main() {
ios::sync_with_stdio(0);
cin.tie(0);
int n, l;
cin >> n >> l;
vll x(n), y(n);
for (int i = 0; i < n; ++i) {
cin >> x[i] >> y[i];
}
cout << fixed << setprecision(4) << discrete_binary_search<ld>([&](ld d) -> bool {
// is there a point with min distance > d
// equivalently, is every point within distance d
vector<array<ld, 2>> intervals;
// add to intervals
for (int i = 0; i < n; ++i) {
if (abs(y[i]) > d) continue;
ld dx = sqrt(d * d - y[i] * y[i]);
// get rid of nested intervals
array<ld, 2> new_interval{x[i] - dx, x[i] + dx};
while (!intervals.empty() && a_contains_b(new_interval, intervals.back())) {
intervals.pop_back();
}
if (!(!intervals.empty() && a_contains_b(intervals.back(), new_interval)))
intervals.pb({x[i] - dx, x[i] + dx});
}
// merge intervals
vector<array<ld, 2>> merged;
for (auto [s, e] : intervals) {
if (!merged.empty() && s <= merged.back()[1]) smax(merged.back()[1], e);
else merged.pb({s, e});
}
// check interval spans whole highway
return any_of(all(merged), [&](array<ld, 2> interval) -> bool {return interval[0] <= 0 && interval[1] >= l;});
}, 0, 2e15) << '\n';
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
204 KB |
Output is correct |
2 |
Correct |
0 ms |
204 KB |
Output is correct |
3 |
Correct |
0 ms |
204 KB |
Output is correct |
4 |
Correct |
0 ms |
204 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
204 KB |
Output is correct |
2 |
Correct |
1 ms |
204 KB |
Output is correct |
3 |
Correct |
1 ms |
204 KB |
Output is correct |
4 |
Correct |
1 ms |
204 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
4 ms |
332 KB |
Output is correct |
2 |
Correct |
7 ms |
588 KB |
Output is correct |
3 |
Correct |
4 ms |
332 KB |
Output is correct |
4 |
Correct |
7 ms |
636 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
10 ms |
636 KB |
Output is correct |
2 |
Correct |
15 ms |
1128 KB |
Output is correct |
3 |
Correct |
5 ms |
460 KB |
Output is correct |
4 |
Correct |
9 ms |
876 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
9 ms |
672 KB |
Output is correct |
2 |
Correct |
16 ms |
872 KB |
Output is correct |
3 |
Correct |
5 ms |
460 KB |
Output is correct |
4 |
Correct |
8 ms |
948 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
14 ms |
992 KB |
Output is correct |
2 |
Correct |
18 ms |
888 KB |
Output is correct |
3 |
Correct |
6 ms |
488 KB |
Output is correct |
4 |
Correct |
9 ms |
880 KB |
Output is correct |
5 |
Correct |
6 ms |
460 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
201 ms |
8604 KB |
Output is correct |
2 |
Correct |
129 ms |
6452 KB |
Output is correct |
3 |
Correct |
127 ms |
5560 KB |
Output is correct |
4 |
Correct |
112 ms |
9160 KB |
Output is correct |
5 |
Correct |
46 ms |
1532 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
74 ms |
2664 KB |
Output is correct |
2 |
Correct |
116 ms |
5412 KB |
Output is correct |
3 |
Correct |
136 ms |
8920 KB |
Output is correct |
4 |
Correct |
123 ms |
9372 KB |
Output is correct |
5 |
Correct |
124 ms |
9996 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
299 ms |
9324 KB |
Output is correct |
2 |
Correct |
131 ms |
6512 KB |
Output is correct |
3 |
Correct |
200 ms |
9148 KB |
Output is correct |
4 |
Correct |
108 ms |
11048 KB |
Output is correct |
5 |
Correct |
109 ms |
4208 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
156 ms |
6904 KB |
Output is correct |
2 |
Correct |
141 ms |
6804 KB |
Output is correct |
3 |
Correct |
97 ms |
3900 KB |
Output is correct |
4 |
Correct |
106 ms |
11044 KB |
Output is correct |
5 |
Correct |
157 ms |
9864 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
353 ms |
10888 KB |
Output is correct |
2 |
Correct |
134 ms |
6764 KB |
Output is correct |
3 |
Correct |
100 ms |
3904 KB |
Output is correct |
4 |
Correct |
110 ms |
11080 KB |
Output is correct |
5 |
Correct |
163 ms |
10080 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
1083 ms |
43004 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
406 ms |
11456 KB |
Output is correct |
2 |
Execution timed out |
1099 ms |
46720 KB |
Time limit exceeded |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
1069 ms |
61824 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
468 ms |
12332 KB |
Output is correct |
2 |
Execution timed out |
1084 ms |
67004 KB |
Time limit exceeded |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
1058 ms |
63116 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
547 ms |
13896 KB |
Output is correct |
2 |
Execution timed out |
1091 ms |
69932 KB |
Time limit exceeded |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
1090 ms |
64784 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
629 ms |
15420 KB |
Output is correct |
2 |
Execution timed out |
1093 ms |
72788 KB |
Time limit exceeded |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
1095 ms |
67796 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
746 ms |
16472 KB |
Output is correct |
2 |
Execution timed out |
1099 ms |
78568 KB |
Time limit exceeded |
3 |
Halted |
0 ms |
0 KB |
- |