QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#537306#8037. Gambler's Ruinrotcar07WA 0ms3852kbC++141.0kb2024-08-30 09:44:532024-08-30 09:44:53

Judging History

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

  • [2024-08-30 09:44:53]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:3852kb
  • [2024-08-30 09:44:53]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;
int n;
double sum[1000005];
constexpr double eps=1e-8;
int main(){
    ios::sync_with_stdio(0),cin.tie(0),cout.tie(0);
    cin>>n;vector<pair<double,int>>v(n);
    for(auto&x:v) cin>>x.first>>x.second;
    sort(v.begin(),v.end());
    for(int i=1;i<=n;i++) sum[i]=sum[i-1]+v[i-1].second;
    auto calc=[&](int x) -> double {
        if(v[x-1].first>eps) return 1/v[x-1].first*(sum[n]-sum[x-1]);
        else return 1e18;
    };
    auto calcw=[&](int x) -> double {
        if(1-v[x-1].first>eps) return 1/(1-v[x-1].first)*sum[x];
        else return 1e18;
    };
    double ans=sum[n]-calc(1),mx=-1e18;
    int pos=0;
    for(int i=2;i<=n;i++)if(v[i].first-eps>v[i-1].first){
        pos++;
        double k=calc(i);
        while(calcw(pos)-eps>=k) pos--;
        ans=max(ans,sum[n]-sum[i-1]+max(sum[pos]-k,mx));
        // cout<<ans<<' '<<pos<<' '<<mx<<' '<<k<<'\n';
        mx=max(sum[i]-calcw(i),mx);
    }
    cout<<fixed<<setprecision(10)<<max(ans,0.0)<<'\n';
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 0
Wrong Answer
time: 0ms
memory: 3852kb

input:

2
1 15
0 10

output:

0.0000000000

result:

wrong answer 1st numbers differ - expected: '10.0000000', found: '0.0000000', error = '1.0000000'