#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define mp make_pair
#define pb push_back
#define x first
#define y second
#define pii pair<int, int>
#define p3i pair<pii, int>
#define pll pair<ll, ll>
#define p3l pair<pll, ll>
#define vi vector<int>
#define vpii vector<pii>
#define vp3i vector<p3i>
#define vpll vector<pll>
#define vp3l vector<p3l>
#define lseg L, (L+R)/2, N*2+1
#define rseg (L+R)/2+1, R, N*2+2
#define ub upper_bound
#define lb lower_bound
#define pq priority_queue
#define MN 1000000007
#define fox(k, x) for (int k=0; k<x; ++k)
#define fox1(k, x) for (int k=1; k<=x; ++k)
#define foxr(k, x) for (int k=x-1; k>=0; --k)
#define fox1r(k, x) for (int k=x; k>0; --k)
#define ms multiset
#define flood(x) memset(x, 0x3f3f3f3f, sizeof x)
#define drain(x) memset(x, 0, sizeof x)
#define rng() ((rand() << 14)+rand())
#define scan(X) do{while((X=getchar())<'0'); for(X-='0'; '0'<=(_=getchar()); X=(X<<3)+(X<<1)+_-'0');}while(0)
char _;
#define pi 3.14159265358979323846
#define startrng mt19937 rng(chrono::steady_clock::now().time_since_epoch().count());
double ans;
int n, d, x, y;
vector<pll> v;
vector<pll> hull;
//f(x) = x^2 + mx + b
//xa1+b1=xa2+b2
//x=(b2-b1)/(a1-a2);
double eval(pll A, double X){
//cout << A.x << ' ' << A.y << ' ' << X << endl;
return sqrt(X*X+X*A.y+A.x);
}
void check(pll A, pll B){
double x=(B.x-A.x)/double(A.y-B.y);
if (x<0 || x>d) return;
ans = max(eval(A, x), ans);
}
bool cross(pll A, pll O, pll B){
return (A.x-O.x)*(B.y-O.y)-(A.y-O.y)*(B.x-O.x)<=0;
}
int32_t main(){
scanf("%i%i", &n, &d);
fox(l, n){
scanf("%i%i", &x, &y);
v.pb(mp(x, y));
}
sort(v.begin(), v.end());
for (auto i:v){
while(hull.size()>1 && cross(hull[hull.size()-2], hull.back(), i)){
hull.pop_back();
}
hull.pb(mp(i.y*i.y+i.x*i.x, -2*i.x));
}
fox(l, hull.size()-1){
check(hull[l], hull[l+1]);
}
//cout << ans << endl;
double lft=(1LL<<60), rit=(1LL<<60);
fox(l, hull.size()){
lft=min(lft, eval(hull[l], 0));
rit=min(rit, eval(hull[l], d));
}
//cout << lft << ' ' << rit << endl;
ans = max(ans, max(lft, rit));
//cout << sqrt(ans) << endl;
printf("%.8f", ans);
return 0;
}
Compilation message
mobile.cpp: In function 'int32_t main()':
mobile.cpp:23:34: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
#define fox(k, x) for (int k=0; k<x; ++k)
mobile.cpp:68:7:
fox(l, hull.size()-1){
~~~~~~~~~~~~~~~~
mobile.cpp:68:3: note: in expansion of macro 'fox'
fox(l, hull.size()-1){
^~~
mobile.cpp:23:34: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
#define fox(k, x) for (int k=0; k<x; ++k)
mobile.cpp:73:7:
fox(l, hull.size()){
~~~~~~~~~~~~~~
mobile.cpp:73:3: note: in expansion of macro 'fox'
fox(l, hull.size()){
^~~
mobile.cpp:56:8: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
scanf("%i%i", &n, &d);
~~~~~^~~~~~~~~~~~~~~~
mobile.cpp:58:10: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
scanf("%i%i", &x, &y);
~~~~~^~~~~~~~~~~~~~~~
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
5 ms |
256 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
4 ms |
256 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
5 ms |
504 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
6 ms |
504 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
6 ms |
504 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
8 ms |
504 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
31 ms |
2536 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
29 ms |
2456 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
28 ms |
2540 KB |
Output is correct |
2 |
Correct |
34 ms |
2668 KB |
Output is correct |
3 |
Correct |
31 ms |
4460 KB |
Output is correct |
4 |
Incorrect |
45 ms |
4076 KB |
Output isn't correct |
5 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
42 ms |
2660 KB |
Output is correct |
2 |
Correct |
39 ms |
3708 KB |
Output is correct |
3 |
Correct |
33 ms |
3432 KB |
Output is correct |
4 |
Incorrect |
47 ms |
4076 KB |
Output isn't correct |
5 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
43 ms |
3556 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
142 ms |
8668 KB |
Output is correct |
2 |
Correct |
179 ms |
8668 KB |
Output is correct |
3 |
Correct |
165 ms |
8668 KB |
Output is correct |
4 |
Incorrect |
198 ms |
8668 KB |
Output isn't correct |
5 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
183 ms |
14800 KB |
Output is correct |
2 |
Incorrect |
154 ms |
8668 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
163 ms |
16848 KB |
Output is correct |
2 |
Correct |
205 ms |
16848 KB |
Output is correct |
3 |
Correct |
222 ms |
24784 KB |
Output is correct |
4 |
Incorrect |
246 ms |
27472 KB |
Output isn't correct |
5 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
214 ms |
17240 KB |
Output is correct |
2 |
Incorrect |
182 ms |
16848 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
187 ms |
16848 KB |
Output is correct |
2 |
Incorrect |
245 ms |
16848 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
253 ms |
19516 KB |
Output is correct |
2 |
Incorrect |
225 ms |
16852 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
215 ms |
16848 KB |
Output is correct |
2 |
Correct |
267 ms |
16852 KB |
Output is correct |
3 |
Correct |
269 ms |
16848 KB |
Output is correct |
4 |
Incorrect |
318 ms |
16848 KB |
Output isn't correct |
5 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
294 ms |
25408 KB |
Output is correct |
2 |
Incorrect |
241 ms |
16824 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
273 ms |
16848 KB |
Output is correct |
2 |
Correct |
344 ms |
19236 KB |
Output is correct |
3 |
Correct |
322 ms |
16848 KB |
Output is correct |
4 |
Incorrect |
403 ms |
35440 KB |
Output isn't correct |
5 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
351 ms |
29136 KB |
Output is correct |
2 |
Incorrect |
298 ms |
16976 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |