QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#165625 | #5505. Great Chase | arseny_y# | AC ✓ | 1802ms | 10116kb | C++23 | 1.5kb | 2023-09-05 20:02:41 | 2023-09-05 20:02:41 |
Judging History
answer
//I wrote this code 4 u today
#include <bits/stdc++.h>
template<class t> using vc = std::vector<t>;
#define nd node*
#define pnd pair<nd, nd>
typedef long long ll;
template<const ll MOD>
struct mod_mul : std::multiplies<const ll> {
ll operator()(const ll a, const ll b) {
return (a * b) % MOD;
}
};
template<typename T>
inline void sort(T &a) {
std::sort(a.begin(), a.end());
}
template<typename T>
inline void unique(T &a) {
a.resize(std::unique(a.begin(), a.end()) - a.begin());
}
template<typename T>
inline void reverse(T &a) {
std::reverse(a.begin(), a.end());
}
const ll INF = 9023372036854775808ll;
const ll MOD = 1000000007ll;
typedef long double ld;
int main() {
std::cin.tie(nullptr)->ios_base::sync_with_stdio(false);
std::cout << std::fixed << std::setprecision(18);
int z;
std::cin >> z;
while (z--) {
ll n, v;
std::cin >> n >> v;
vc<std::pair<ll, ll>> p(n);
for (auto &i : p) std::cin >> i.first >> i.second;
ld l = 0, r = 1e12 + 5;
for (int i = 0; i < 120; ++i) {
ld mid = (l + r) / 2.0;
ld mn = 1e12 + 5, mx = -1e12 - 5;
for (auto [p, v] : p) if (p > 0) mn = std::min(mn, p - v * mid);
for (auto [p, v] : p) if (p < 0) mx = std::max(mx, p + v * mid);
if (mn <= mx) r = mid;
else l = mid;
}
std::cout << r * v << '\n';
}
}
詳細信息
Test #1:
score: 100
Accepted
time: 1ms
memory: 4068kb
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.250000000000000000 1.230769230769230769 3000000000000.000000000000000000
result:
ok 3 numbers
Test #2:
score: 0
Accepted
time: 796ms
memory: 3888kb
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.349110037088394165 16414958969.727281192317605019 5202715639.835183900315314531 321977234.156325868971180171 45384199210.221683971583843231 183885744.769230769234127365 1708925225.230472357943654060 89786664971.557942636311054230 13924365606.287388795055449009 412975327.5555555555620230...
result:
ok 10000 numbers
Test #3:
score: 0
Accepted
time: 1802ms
memory: 4428kb
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...
output:
189662921.363636363646946847 197971181.333333333343034610 997533531.737629592476878315 6439673170.665741784963756800 993821598110.661077857017517090 22727977326.402660988271236420 34702455207.518504031002521515 677770533.929817498719785362 46631726883.969133235514163971 5446481867.129032258410006762...
result:
ok 93 numbers
Test #4:
score: 0
Accepted
time: 1196ms
memory: 10116kb
input:
5 400000 999972 172811492468 106699 171900177092 102097 194121748377 184014 190302947556 172722 183121572232 149212 196566712700 190884 171376795991 99358 522927044000 159597 -129031052077 34395 189422320931 170012 -275879974024 638546 408864707565 98475 -106703244806 368801 192128798630 178213 2915...
output:
519985220219.811770915985107422 511413015796.766475379467010498 424240880533.634020328521728516 518849481155.503918796777725220 1882496988186.444000005722045898
result:
ok 5 numbers
Test #5:
score: 0
Accepted
time: 1734ms
memory: 8372kb
input:
38 16668 999947 -3844782803 511 -210897941456 464872 618726004990 714384 -954596898686 225256 96675744 1148 -1515974078 11375 -206213840984 706184 306078847 3947 -474818331950 391451 -616022698917 561244 123378707 1540 -640636592655 406006 459201391325 908506 -733249583 5719 496163273 6238 619876911...
output:
89670748252.978608019649982452 98630840901.507606960833072662 29393530999.894327789545059204 50801000770.955985423177480698 39668001027.269331343472003937 467846478226.411370843648910522 30789914370.574311614036560059 23151476830.905098434537649155 51606123416.625827591866254807 151713060001.6625889...
result:
ok 38 numbers