QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#583252 | #5505. Great Chase | ticking_away# | TL | 1ms | 3804kb | C++20 | 2.0kb | 2024-09-22 19:14:11 | 2024-09-22 19:14:12 |
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;
#define int long long
#define db long double
const db EPS = 1e-8;
int sgn(db x) { return fabs(x) <= EPS ? 0 : (x > EPS ? 1 : -1); }
void solve()
{
ll n, vt;
cin >> n >> vt;
vector<ll> v(n);
vector<ll> a(n);
for (int i = 0; i < n; i++)
{
cin >> a[i] >> v[i];
}
db l = 0, r = 1e13;
int cnt = 0;
const int INF = 1e18;
while (1)
{
++cnt;
if (cnt > 2000)
break;
db mid = (l + r) / 2.0L;
auto check = [&](db x)
{
db mx = -INF, mn = INF;
for (int i = 0; i < n; i++)
{
if (a[i] > 0)
mn = min(mn, 1.0 * a[i] - 1.0 * x * v[i]);
else
mx = max(mx, 1.0 * a[i] + 1.0 * x * v[i]);
}
return sgn(mx - mn) < 0;
};
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: 100
Accepted
time: 1ms
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.2499999775 1.2307692246 2999999999999.9999997616
result:
ok 3 numbers
Test #2:
score: -100
Time Limit Exceeded
input:
10000 200 997007 405524182320 754760 686939601648 419804 687047488212 715566 1446157132 4594 -670522037 4673 763634629282 253755 424307411732 275041 1582708381 8473 -667425982 4622 -522841486 1427 702430907988 460271 1405423646 1060 1497754648 6227 883363410675 723547 56899800372 46435 -810216390 64...
output:
145405766328.3491095155 16414958969.7272811811 5202715639.8351829993 321977234.1563258449 45384199210.2216838636 183885744.7692097246 1708925225.2304723455 89786664971.5579425320 13924365606.2873887857 412975327.5553305744 965508404.5121014863 4703493416.2883765087 352961619.3810438116 5575125771.79...