#include "bits/stdc++.h"
using namespace std;
signed main(){
ios_base::sync_with_stdio(false);cin.tie(0);
int n,m;
long double d;
cin>>n>>m>>d;
std::vector<double> v;
for(int i = 0;i<n;i++){
double x;cin>>x;
v.push_back(x);
}
for(int i = 0;i<m;i++){
double x;cin>>x;
v.push_back(x);
sort(v.begin(),v.end());
if(v.size()==1){
cout<<0<<" ";
continue;
}
long double l = 0.0 , r = 100000000000.0;
long double ans = 0;
for(int j = 0;j<100;j++){
long double mid = (l+r)/2;
long double la = -1000000000000.0;
long double ss = 1;
for(auto e:v){
long double cur = max(la+d,e-mid);
if(abs(cur-e)>mid){
ss = 0;
break;
}
la = cur;
}
if(ss){
ans = mid;
r = mid;
}else l = mid;
}
long long lol = 1;
long long nah = ans;
cout<<nah;
string s = ".";
while(lol--){
ans*=10;
long long a3 = ans;
s+=char(a3%10+'0');
if(a3%10){
cout<<s;
s = "";
}
}
if(i<m-1)cout<<" ";
}
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
7 ms |
344 KB |
Output is correct |
2 |
Correct |
12 ms |
348 KB |
Output is correct |
3 |
Correct |
10 ms |
348 KB |
Output is correct |
4 |
Correct |
8 ms |
348 KB |
Output is correct |
5 |
Correct |
7 ms |
348 KB |
Output is correct |
6 |
Correct |
12 ms |
348 KB |
Output is correct |
7 |
Correct |
9 ms |
348 KB |
Output is correct |
8 |
Correct |
12 ms |
348 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
7 ms |
344 KB |
Output is correct |
2 |
Correct |
12 ms |
348 KB |
Output is correct |
3 |
Correct |
10 ms |
348 KB |
Output is correct |
4 |
Correct |
8 ms |
348 KB |
Output is correct |
5 |
Correct |
7 ms |
348 KB |
Output is correct |
6 |
Correct |
12 ms |
348 KB |
Output is correct |
7 |
Correct |
9 ms |
348 KB |
Output is correct |
8 |
Correct |
12 ms |
348 KB |
Output is correct |
9 |
Correct |
717 ms |
4056 KB |
Output is correct |
10 |
Incorrect |
354 ms |
4320 KB |
Output isn't correct |
11 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
1547 ms |
460 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
1547 ms |
460 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |