#include <bits/stdc++.h>
#define pb push_back
#define mp make_pair
#define F first
#define S second
#define all(v) v.begin(), v.end()
#define sh cin.tie(0); cin.sync_with_stdio(0); cout.tie(0);
#define FILE freopen("test.in", "r", stdin);
#define vprint(v) for (int ii = 0; ii < v.size(); ii++){cout << v[ii] << " ";}
#define debugv(v) if (v.size() != 0) {cout << "[ "; for (int __ = 0; __ < (int)(v.size()) - 1; __++){cout << v[__] << ", ";} cout << v[(int)(v.size()) - 1] << " ]" << endl;} else {cout << "[]" << endl;}
#define debug cout << "-----------------------------------------------" << endl;
#define print1(a) cout << "{ " << a << " }" << endl;
#define print2(a, b) cout << "{ " << a << ", " << b << " }" << endl;
#define print3(a, b, c) cout << "{ " << a << ", " << b << ", " << c << " }" << endl;
#define print4(a, b, c, d) cout << "{ " << a << ", " << b << ", " << c << ", " << d << " }" << endl;
using namespace std;
#define int long long
const double INF = 1e11 + 228;
const int MAXN = 2e5 + 228;
double ans[MAXN];
double intersect1(double x1, double x2, double t1, double t2) {
//print4(x1, x2, t1, (((x2 / (2 * t2)) - (x1 / (2 * t1))) * 2 * t1 * t2) / (t1 - t2));
return ((((x2 / (2 * t2)) - (x1 / (2 * t1))) * 2 * t1 * t2) / (t1 - t2));
}
double get(pair<double, double> to, double h) {
return (to.S * to.S) / (4 * to.F) + (h * h) / (4 * to.F) - (2 * h * to.S) / (4 * to.F);
}
signed main()
{
#ifdef LOCAL
FILE;
#endif
sh;
int n;
cin >> n;
vector<pair<int, int>> v;
for (int i = 0; i < n; i++) {
int aa, bb;
cin >> aa >> bb;
v.pb({aa, bb});
}
vector<pair<double, double>> s;
vector<double> x1;
for (int i = 0; i < n; i++) {
double now = v[i].S;
//print1(i);
while (x1.size() > 0 && x1.back() <= (double)v[i].F) {
x1.pop_back();
s.pop_back();
}
int id = x1.size();//upper_bound(all(x1), (double)v[i].F) - x1.begin();
//print2(i, id);
/*for (auto oo : s) {
cout << oo.S << ' ';
}
cout << endl;*/
if (s.size() > 0) {
assert((int)(s.size()) - id - 1 >= 0);
//print4("t", s.size(), id, x1.size());
pair<double, double> to = s[id];
double cl = get(to, v[i].F);
now = min(now, cl);
}
while (s.size() > 0 && s.back().F <= now) {
s.pop_back();
}
while (x1.size() + 1 > s.size() && s.size() != 0) {
x1.pop_back();
}
if (s.size() == 0) {
x1.clear();
}
while (s.size() >= 2 && get(s.back(), intersect1(s.back().S, (double)v[i].F, sqrt(s.back().F), sqrt(now))) >= get(s[s.size() - 2], intersect1(s.back().S, (double)v[i].F, sqrt(s.back().F), sqrt(now))) /*intersect1(s[s.size() - 2].S, s.back().S, sqrt(s[s.size() - 2].F), sqrt(s.back().F))*/) {
s.pop_back();
x1.pop_back();
}
ans[i] = now;
//print1(now);
if (s.size() > 0) {
x1.pb(intersect1(s.back().S, (double)v[i].F, sqrt(s.back().F), sqrt(now)));
}
//print1("ok");
s.pb({now, (double)v[i].F});
}
for (int i = 0; i < n; i++) {
cout << fixed << setprecision(4) << ans[i] << '\n';
}
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
5 ms |
376 KB |
10 numbers |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
5 ms |
376 KB |
2 numbers |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
5 ms |
376 KB |
505 numbers |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
7 ms |
480 KB |
2000 numbers |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
23 ms |
1396 KB |
2953rd numbers differ - expected: '1030.4380000000', found: '1030.4451000000', error = '0.0071000000' |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
51 ms |
2800 KB |
7855th numbers differ - expected: '6715.0000000000', found: '6714.9980000000', error = '0.0020000000' |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
108 ms |
5096 KB |
6160th numbers differ - expected: '1173.9560000000', found: '1173.9578000000', error = '0.0018000000' |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
117 ms |
5480 KB |
4588th numbers differ - expected: '54.0000000000', found: '54.0020000000', error = '0.0020000000' |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
161 ms |
6748 KB |
1797th numbers differ - expected: '1.1250000000', found: '1.1221000000', error = '0.0029000000' |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
192 ms |
8160 KB |
2716th numbers differ - expected: '22.1690000000', found: '22.1562000000', error = '0.0128000000' |
2 |
Halted |
0 ms |
0 KB |
- |