QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#145841 | #5505. Great Chase | TJ_Andeviking | TL | 4585ms | 3852kb | C++20 | 1.8kb | 2023-08-22 14:43:46 | 2023-08-22 14:43:54 |
Judging History
answer
#pragma GCC optimize(2)
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef __int128_t int128;
typedef pair<int, int> pii;
#define iofast ios::sync_with_stdio(false),cin.tie(0),cout.tie(0)
#define lowbit(x) (x&(-x))
#define inv(x) qpow(x,mod-2)
#define debug(x) cout << (#x) << " = " << x << endl
#define range(x) (x).begin(), (x).end()
const int iINF = 0x3f3f3f3f;
const ll llINF = 0x3f3f3f3f3f3f3f3f;
const ll mod = 998244353;
/*---------------------------------------*/
void solve()
{
int n, v;
cin >> n >> v;
vector<pair<ll, ll>>p[2];
for (int i = 1;i <= n;i++) {
ll a, b;
cin >> a >> b;
if (a > 0)
p[0].emplace_back(a, b);
else
p[1].emplace_back(a, b);
}
// cout << p[0].size() << '\n';
long double l = 0, r = 1e13;
for (int cnt = 1;cnt <= 1000;++cnt) {
long double mid = (l + r) / 2;
long double pl = 1e28, pr = -1e28;
for (const auto& [x, y] : p[0])
if (pl - x + mid * y >= -1E-18L)
pl = x - mid * y;
for (const auto& [x, y] : p[1])
if (x + mid * y - pr >= -1E-18L)
pr = x + mid * y;
if (pr - pl >= -1E-18L)
r = mid;
else
l = mid;
}
// printf("%.15LF\n", v * l) << '\n';
// cout << p[0][0].first - l * p[0][0].second << '\n';
cout << fixed << setprecision(15) << v * l << '\n';
// cout << setprecision(15) << (1.230769230769231L - 1.23076923L) / 1.23076923L - 1e-8L << '\n';
}
/*---------------------------------------*/
int main()
{
iofast;
int t = 1;
cin >> t;
// cout << "38.25\n1.23076923\n3000000000000";
while (t--)
solve();
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 1ms
memory: 3744kb
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.250000000000000 1.230769230769231 2999999999999.999999761581421
result:
ok 3 numbers
Test #2:
score: 0
Accepted
time: 4585ms
memory: 3852kb
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.349110022187233 16414958969.727281190454960 5202715639.835183899849653 321977234.156325868942076 45384199210.221683971583843 183885744.769230769219575 1708925225.230472357827239 89786664971.557942628860474 13924365606.287388794124126 412975327.555555555532919 965508404.512101492495276 4...
result:
ok 10000 numbers
Test #3:
score: -100
Time Limit Exceeded
input:
93 15435 968117 4196666 184 -5069875 255 -9782648 980 -1978138 176 9333323 764 -4323540 12 -8442049 319 -5371878 137 2881306 10 -4050629 133 -4659099 59 -5189169 320 -2256647 99 -3686648 37 1059255 33 -223142 20 8040933 408 8407764 705 694547 38 -7913614 746 -3573355 132 5919585 189 -3756662 94 -795...