QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#825554#9778. Brotatoucup-team1134#WA 1291ms198508kbC++233.7kb2024-12-21 20:15:192024-12-21 20:15:21

Judging History

This is the latest submission verdict.

  • [2024-12-21 20:15:21]
  • Judged
  • Verdict: WA
  • Time: 1291ms
  • Memory: 198508kb
  • [2024-12-21 20:15:19]
  • Submitted

answer

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
template<class T>bool chmax(T &a, const T &b) { if (a<b) { a=b; return true; } return false; }
template<class T>bool chmin(T &a, const T &b) { if (b<a) { a=b; return true; } return false; }
#define vi vector<int>
#define vl vector<ll>
#define vii vector<pair<int,int>>
#define vll vector<pair<ll,ll>>
#define vvi vector<vector<int>>
#define vvl vector<vector<ll>>
#define vvii vector<vector<pair<int,int>>>
#define vvll vector<vector<pair<ll,ll>>>
#define vst vector<string>
#define pii pair<int,int>
#define pll pair<ll,ll>
#define pb push_back
#define all(x) (x).begin(),(x).end()
#define mkunique(x) sort(all(x));(x).erase(unique(all(x)),(x).end())
#define fi first
#define se second
#define mp make_pair
#define si(x) int(x.size())
const int mod=998244353,MAX=300005,INF=15<<26;

#define ld long double
#define ld2 _Float128
ld dp[MAX][123];
ld2 dp2[MAX][123];

int main(){
    
    std::ifstream in("text.txt");
    std::cin.rdbuf(in.rdbuf());
    cin.tie(0);
    ios::sync_with_stdio(false);
    
    ll N,K;
    ld P;cin>>N>>K>>P;
    ll pp=roundl(P*10000),qq=10000-pp,rr=10000;
    chmin(K,120LL);
    
    if(N>10000){
        for(int j=0;j<=K;j++) dp[N][j]=0;
        dp[0][0]=0;
        for(int i=N-1;i>=0;i--){
            dp[0][0]+=1.0l;
            dp[0][0]/=qq;
            dp[0][0]*=rr;
        }
        for(int i=N-1;i>=1;i--){
            dp[i][0]=(dp[i+1][0]*qq+dp[0][0]*pp+rr)/rr;
        }
        //cout<<fixed<<setprecision(25)<<dp[0][0]<<endl;
        
        for(int j=1;j<=K;j++){
            for(int i=N-1;i>=0;i--){
                dp[i][j]=(ld)(dp[i+1][j]*qq+dp[i][j-1]*pp+rr)/rr;
            }
            ld l=0,r=5e12;
            for(int q=0;q<80;q++){
                ld m=(l+r)/2;
                int L=0,R=N;
                while(R-L>1){
                    int M=(L+R)/2;
                    if(dp[M][j-1]<m) R=M;
                    else L=M;
                }
                ld s=dp[R][j];
                for(int i=L;i>=0;i--){
                    s=(ld)(s*qq+m*pp+rr)/rr;
                }
                if(s>m) l=m;
                else r=m;
            }
            ld m=(l+r)/2;
            for(int i=N-1;i>=1;i--){
                dp[i][j]=(ld)(dp[i+1][j]*qq+min(dp[i][j-1],m)*pp+rr)/rr;
            }
            dp[0][j]=(l+r)/2;
        }
        
        cout<<fixed<<setprecision(25)<<dp[0][K]<<endl;
    }else{
        for(int j=0;j<=K;j++) dp2[N][j]=0;
        dp2[0][0]=0;
        for(int i=N-1;i>=0;i--){
        dp2[0][0]+=1.0;
        dp2[0][0]/=qq;
        dp2[0][0]*=rr;
        }
        for(int i=N-1;i>=1;i--){
        dp2[i][0]=(dp2[i+1][0]*qq+dp2[0][0]*pp+rr)/rr;
        }
        //cout<<fixed<<setprecision(25)<<dp[0][0]<<endl;
        
        for(int j=1;j<=K;j++){
        for(int i=N-1;i>=0;i--){
        dp2[i][j]=(ld2)(dp2[i+1][j]*qq+dp2[i][j-1]*pp+rr)/rr;
        }
        ld2 l=0,r=1e14;
        for(int q=0;q<80;q++){
        ld2 m=(l+r)/2;
        int L=0,R=N;
        while(R-L>1){
        int M=(L+R)/2;
        if(dp2[M][j-1]<m) R=M;
        else L=M;
        }
        ld2 s=dp2[R][j];
        for(int i=L;i>=0;i--){
        s=(ld2)(s*qq+m*pp+rr)/rr;
        }
        if(s>m) l=m;
        else r=m;
        }
        ld2 m=(l+r)/2;
        for(int i=N-1;i>=1;i--){
        dp2[i][j]=(ld2)(dp2[i+1][j]*qq+min(dp2[i][j-1],m)*pp+rr)/rr;
        }
        dp2[0][j]=(l+r)/2;
        //for(int i=0;i<=N;i++) cout<<dp[i][j]<<endl;
        //cout<<fixed<<setprecision(25)<<(l+r)/2<<endl;
        }
        
        cout<<fixed<<setprecision(25)<<(long double)(dp2[0][K])<<endl;
    }
    
    
}


详细

Test #1:

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

input:

5 0
0.5

output:

62.0000000000000000000000000

result:

ok found '62.000000000', expected '62.000000000', error '0.000000000'

Test #2:

score: 0
Accepted
time: 1ms
memory: 3872kb

input:

5 1
0.5

output:

46.9999999999689218217746589

result:

ok found '47.000000000', expected '47.000000000', error '0.000000000'

Test #3:

score: 0
Accepted
time: 6ms
memory: 25116kb

input:

10000 0
0.002

output:

247489700298.2537133246660232543945312

result:

ok found '247489700298.253723145', expected '247489700298.253692627', error '0.000000000'

Test #4:

score: 0
Accepted
time: 518ms
memory: 196396kb

input:

100000 10
0.0002

output:

38767507160.5805820673704147338867188

result:

ok found '38767507160.580581665', expected '38767507133.232215881', error '0.000000001'

Test #5:

score: 0
Accepted
time: 0ms
memory: 198444kb

input:

100000 0
0.0002

output:

2430683127170.3808789253234863281250000

result:

ok found '2430683127170.380859375', expected '2430683127170.376953125', error '0.000000000'

Test #6:

score: 0
Accepted
time: 888ms
memory: 198440kb

input:

100000 20
0.0002

output:

801073272.7049352698959410190582275

result:

ok found '801073272.704935312', expected '801073272.231680870', error '0.000000001'

Test #7:

score: 0
Accepted
time: 1291ms
memory: 198440kb

input:

100000 40
0.0002

output:

478148.7186190374102636724273907

result:

ok found '478148.718619037', expected '478148.718426307', error '0.000000000'

Test #8:

score: 0
Accepted
time: 174ms
memory: 198460kb

input:

99995 4
0.0001

output:

38976542.8681783376778184901922941

result:

ok found '38976542.868178338', expected '38976542.868175834', error '0.000000000'

Test #9:

score: 0
Accepted
time: 365ms
memory: 198492kb

input:

99995 10
0.0001

output:

3549184.5977119627943920932011679

result:

ok found '3549184.597711963', expected '3549184.597712017', error '0.000000000'

Test #10:

score: 0
Accepted
time: 478ms
memory: 198500kb

input:

99995 16
0.0001

output:

399507.4705567470063556356763002

result:

ok found '399507.470556747', expected '399507.470556742', error '0.000000000'

Test #11:

score: 0
Accepted
time: 310ms
memory: 198444kb

input:

99990 8
0.0001

output:

7773463.9479311482764387619681656

result:

ok found '7773463.947931148', expected '7773463.947930722', error '0.000000000'

Test #12:

score: 0
Accepted
time: 365ms
memory: 198508kb

input:

99990 10
0.0001

output:

3547428.9454724011752659862395376

result:

ok found '3547428.945472401', expected '3547428.945472297', error '0.000000000'

Test #13:

score: 0
Accepted
time: 406ms
memory: 196412kb

input:

99990 12
0.0001

output:

1647102.0204344754565681796520948

result:

ok found '1647102.020434476', expected '1647102.020434395', error '0.000000000'

Test #14:

score: -100
Wrong Answer
time: 14ms
memory: 38760kb

input:

16664 1
0.0012

output:

257920045414.8990234136581420898437500

result:

wrong answer 1st numbers differ - expected: '257920044630.8605347', found: '257920045414.8990173', error = '0.0000000'