QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#583204 | #5505. Great Chase | ticking_away# | WA | 0ms | 3804kb | C++20 | 1.9kb | 2024-09-22 18:57:23 | 2024-09-22 18:57:30 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
using ui = unsigned int;
using ull = unsigned long long;
using ll = long long;
#define endl '\n'
using pii = pair<int, int>;
using pll = pair<ll, ll>;
const int maxn = 2e5 + 10;
const int mod = 1000000007;
#define inl inline
#define fr(i, a, b) for (int i = a; i <= b; i++)
#define ford(i, a, b) for (int i = a; i >= b; i--)
#define forall(i, a) for (auto &i : a)
/**
____ ___ _____
/ ___| _ _ / _ \___ /
\___ \| | | | | | ||_ \
___) | |_| | |_| |__) |
|____/ \__, |\___/____/
|___/
*/
istream &operator>>(istream &in, vector<int> &v)
{
for (auto &i : v)
in >> i;
return in;
}
ostream &operator<<(ostream &out, vector<int> &v)
{
for (auto &i : v)
out << i << " ";
return out;
}
bool _output = 1;
void solve()
{
int n, vt;
cin >> n >> vt;
vector<int> v(n);
vector<int> a(n);
for (int i = 0; i < n; i++)
{
cin >> a[i] >> v[i];
}
#define db long double
const db EPS = 1e-8;
db l = 0, r = 1e14;
int cnt = 0;
while (l + EPS < r)
{
++cnt;
db mid = (l + r) / 2;
auto check = [&](db x)
{
db mx = LLONG_MIN, mn = LLONG_MAX;
for (int i = 0; i < n; i++)
{
if (a[i] > 0)
mn = min(mn, a[i] - x * v[i]);
else
mx = max(mx, a[i] + x * v[i]);
}
return mn >= EPS + mx;
};
if (check(mid))
l = mid;
else
r = mid;
}
cout << fixed << setprecision(10) << l * vt << endl;
}
signed main()
{
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
int _ = 1;
if (_output)
cin >> _;
while (_--)
solve();
return 0;
}
詳細信息
Test #1:
score: 0
Wrong Answer
time: 0ms
memory: 3804kb
input:
3 4 9 10 2 -7 2 -6 1 7 1 2 8 -1 7 1 6 2 3 -1000000000000 1 1000000000000 1
output:
38.2499999482 1.2307691961 300000000000000.0000000000
result:
wrong answer 2nd numbers differ - expected: '1.2307692', found: '1.2307692', error = '0.0000000'