QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#546479#5505. Great ChaseFika#WA 1876ms3892kbC++141.2kb2024-09-04 04:14:382024-09-04 04:14:39

Judging History

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

  • [2024-09-04 04:14:39]
  • 评测
  • 测评结果:WA
  • 用时:1876ms
  • 内存:3892kb
  • [2024-09-04 04:14:38]
  • 提交

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,100){
        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: 0ms
memory: 3892kb

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.249999999996627937
1.230769230766823504
3000000000000.000000000000000000

result:

ok 3 numbers

Test #2:

score: -100
Wrong Answer
time: 1876ms
memory: 3848kb

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.349110230803489685
16414958969.727281105704605579
5202715639.835183707997202873
321977234.156325965333962813
45384199210.221684150397777557
183885744.769230770252761431
1708925225.230472085648216307
89786664971.557942412793636322
13924365606.287388756871223450
412975327.5555554952879901...

result:

wrong answer 4566th numbers differ - expected: '1.0000010', found: '1.0000007', error = '0.0000003'