QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#546480#5505. Great ChaseFika#TL 1ms3880kbC++141.2kb2024-09-04 04:22:392024-09-04 04:22:39

Judging History

你现在查看的是最新测评结果

  • [2024-09-04 04:22:39]
  • 评测
  • 测评结果:TL
  • 用时:1ms
  • 内存:3880kb
  • [2024-09-04 04:22:39]
  • 提交

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=1e18;
    
    rep(_,0,400){
        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();
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 1ms
memory: 3880kb

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: -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.349110037088394165
16414958969.727281192317605019
5202715639.835183899849653244
321977234.156325868971180171
45384199210.221683971583843231
183885744.769230769234127365
1708925225.230472357943654060
89786664971.557942628860473633
13924365606.287388794124126434
412975327.5555555555620230...

result: