QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#768854 | #8022. Walker | surenjamts# | WA | 0ms | 3932kb | C++20 | 2.1kb | 2024-11-21 14:53:18 | 2024-11-21 14:53:18 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
#define ll long long
#define pb push_back
#define mk make_pair
#define S second
#define F first
void solve(){
double n;
cin >> n;
double p1, p2, v1, v2;
cin >> p1 >> v1 >> p2 >> v2;
if(p1 > p2) swap(p1, p2), swap(v1, v2);
double ans = (n + min(p1 , n - p1)) / v1;
ans = min(ans, (n + min(p2, n - p2))/ v2);
ans = min(ans, max(p2 / v2 , (n - p1) / v2));
ans = min(ans, (2 * n - abs(p2 - p1)) / (v1 + v2));
ans = min(ans, max(p1 / v1 , (n - p1 + n - p2) / v2));
ans = min(ans, max((n - p2) / v2, (p1 + p2) / v1));
auto check = [&](double mid){
double l1 = mid * v1, l2 = mid * v2;
if(l1 >= n + p1) return 1;
if(l2 >= 2 * n - p2) return 1;
if(l1 >= p1 && l2 >= (n - p2) * 2){
double x1 = (l1 - p1) / 2;
double x2 = (l2 - 2 * (n - p2));
if(p1 + x1 > p2 - x2) return 1;
}
if(l1 >= p1 * 2 && l2 >= (n - p2)){
double x1 = (l1 - p1 * 2);
double x2 = (l2 - (n - p2)) / 2;
if(p1 + x1 > p2 - x2) return 1;
}
if(l1 >= p1 * 2 && l2 >= (n - p2) * 2){
double x1 = (l1 - p1 * 2);
double x2 = (l2 - (n - p2) * 2);
if(p1 + x1 > p2 - x2) return 1;
}
if(l1 >= p1 && l2 >= (n - p2)){
double x1 = (l1 - p1) /2;
double x2 = (l2 - (n - p2)) / 2;
if(p1 + x1 > p2 - x2) return 1;
}
if(l1 >= p1 && l2 >= 2 * n - p1 - p2) return 1;
if(l2 >= (n - p2) && l1 >= p1 * p2) return 1;
if(l1 >= (n - p1) && l2 >= p2) return 1;
return 0;
};
double l = 0, r = 1e9;
for(int i = 0; i < 200; i++){
double mid = (l + r)/2;
if(check(mid)) r = mid;
else l = mid;
}
cout << setprecision(18) << min(ans, l) << endl;
}
int main(){
ios::sync_with_stdio(0); cin.tie(NULL); cout.tie(NULL);
int t; cin >> t; while(t--) solve();
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 3872kb
input:
2 10000.0 1.0 0.001 9999.0 0.001 4306.063 4079.874 0.607 1033.423 0.847
output:
5001000 3827.83700137551614
result:
ok 2 numbers
Test #2:
score: 0
Accepted
time: 0ms
memory: 3800kb
input:
1 10.0 1.0 10.0 9.0 0.1
output:
1.09999999999999987
result:
ok found '1.1000000', expected '1.1000000', error '0.0000000'
Test #3:
score: 0
Accepted
time: 0ms
memory: 3872kb
input:
1 10.0 8.0 10.0 9.0 0.1
output:
1.19999999999999996
result:
ok found '1.2000000', expected '1.2000000', error '0.0000000'
Test #4:
score: -100
Wrong Answer
time: 0ms
memory: 3932kb
input:
1 10.0 8.0 0.1 9.0 10
output:
0.900000000000000022
result:
wrong answer 1st numbers differ - expected: '1.1000000', found: '0.9000000', error = '0.1818182'