#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef long double ld;
typedef pair<ll,ll> pl;
typedef pair<ld,ld> pld;
typedef pair<int,int> pii;
typedef tuple<int,int,int> tt;
#define all(a) a.begin(), a.end()
#define filter(a) a.erase(unique(all(a)), a.end())
const ld INF = 1e18;
const ld eps = 1e-12;
const int mn = 2e5 + 5;
ll x[mn], maxR[mn];
ld rad[mn];
bool ok (int j, int i, ld tryR) {
ld tmp = (x[i] - x[j]) * (x[i] - x[j]);
return tmp - 4 * rad[j] * tryR >= -eps;
}
ld calc (int j, int i, ld L = 0, ld R = INF) {
if (abs(L - R) < eps) return L;
ld mid = (L + R) / 2;
if (ok(j, i, mid + eps)) return calc(j, i, mid + eps, R);
return calc(j, i, L, mid);
}
int main()
{
ios::sync_with_stdio(0);
cin.tie(0);
int n; cin >> n;
for (int i = 1; i <= n; i++)
cin >> x[i] >> maxR[i];
rad[1] = maxR[1];
cout << fixed << setprecision(9) << rad[1] << "\n";
stack<int> st; st.push(1);
for (int i = 2; i <= n; i++) {
rad[i] = INF;
int j = -1;
while (st.size()) {
j = st.top(); st.pop();
ld cur = calc(j, i, 0, maxR[i]);
rad[i] = min(rad[i], cur);
if (rad[j] > rad[i]) {
st.push(j);
break;
}
}
st.push(i);
cout << rad[i] << "\n";
}
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
2396 KB |
10 numbers |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
2023 ms |
2396 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
2396 KB |
505 numbers |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
4 ms |
2396 KB |
2000 numbers |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
34 ms |
3304 KB |
20000 numbers |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
85 ms |
4948 KB |
50000 numbers |
2 |
Execution timed out |
2029 ms |
3672 KB |
Time limit exceeded |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
189 ms |
8272 KB |
100000 numbers |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
196 ms |
8276 KB |
115362 numbers |
2 |
Execution timed out |
2057 ms |
5724 KB |
Time limit exceeded |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
275 ms |
10328 KB |
154271 numbers |
2 |
Execution timed out |
2024 ms |
8280 KB |
Time limit exceeded |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
370 ms |
11604 KB |
200000 numbers |
2 |
Execution timed out |
2016 ms |
8148 KB |
Time limit exceeded |
3 |
Halted |
0 ms |
0 KB |
- |