QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#546481 | #5505. Great Chase | Fika# | TL | 3237ms | 4064kb | C++14 | 1.2kb | 2024-09-04 04:24:02 | 2024-09-04 04:24:03 |
Judging History
answer
#include<bits/stdc++.h>
#pragma GCC optimize ("Ofast")
using namespace std;
#define rep(i,a,b) for(ll i = a; i<b;i++)
#define rrep(i,a,b) for(ll i = b-1; i>=a;i--)
#define trav(x,a) for(auto &x: a)
#define all(v) v.begin(),v.end()
#define sz(v) ll(v.size())
typedef long long ll;
typedef vector<ll> vl;
typedef pair<ll,ll> pll;
typedef long double ld;
void solve(){
ll n;
ld v;
cin>>n>>v;
vector<pair<ld,ld>> slopes;
rep(i,0,n) {
ld p,vp;
cin>>p>>vp;
if(p<0){
slopes.emplace_back(p,vp);
} else {
slopes.emplace_back(p,-vp);
}
}
ld lw=0,hi=1e13;
rep(_,0,200){
ld mid = (lw+hi)/2;
ld l = -1e18;
ld r = 1e18;
for(auto [k,m]:slopes){
if(k<0){
l = max(l, k+m*mid);
} else {
r = min(r, k+m*mid);
}
}
if(l<r){
lw = mid;
} else {
hi = mid;
}
}
cout<<setprecision(18)<<fixed<<((lw+hi)/2)*v<<"\n";
}
int main(){
cin.tie(0);
ios_base::sync_with_stdio(0);
ll t; cin>>t;
while(t--) solve();
}
详细
Test #1:
score: 100
Accepted
time: 0ms
memory: 4064kb
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: 3237ms
memory: 4020kb
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.835183899849653244 321977234.156325868971180171 45384199210.221683971583843231 183885744.769230769234127365 1708925225.230472357943654060 89786664971.557942628860473633 13924365606.287388794124126434 412975327.5555555555620230...
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...
output:
189662921.363636363632394932 197971181.333333333328482695 997533531.737629592360462993 6439673170.665741784963756800 993821598110.661077857017517090 22727977326.402660986408591270 34702455207.518504031002521515 677770533.929817498661577702 46631726883.969133235514163971 5446481867.129032257944345474...