QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#825552#9778. Brotatoucup-team1134#TL 1378ms198488kbC++233.7kb2024-12-21 20:14:242024-12-21 20:14:26

Judging History

This is the latest submission verdict.

  • [2024-12-21 20:14:26]
  • Judged
  • Verdict: TL
  • Time: 1378ms
  • Memory: 198488kb
  • [2024-12-21 20:14:24]
  • 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>20000){
        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: 0ms
memory: 3832kb

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: 0ms
memory: 3888kb

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: 0ms
memory: 23592kb

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: 516ms
memory: 198488kb

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: 3ms
memory: 198436kb

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: 886ms
memory: 196356kb

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: 1264ms
memory: 198424kb

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: 173ms
memory: 198424kb

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: 366ms
memory: 198380kb

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: 474ms
memory: 198404kb

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: 298ms
memory: 196388kb

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: 356ms
memory: 198404kb

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: 396ms
memory: 198384kb

input:

99990 12
0.0001

output:

1647102.0204344754565681796520948

result:

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

Test #14:

score: 0
Accepted
time: 88ms
memory: 37700kb

input:

16664 1
0.0012

output:

257920044630.8605322390794754028320312

result:

ok found '257920044630.860534668', expected '257920044630.860534668', error '0.000000000'

Test #15:

score: 0
Accepted
time: 1378ms
memory: 36708kb

input:

16664 21
0.0012

output:

92190688.5444150148759945295751095

result:

ok found '92190688.544415012', expected '92190688.544415027', error '0.000000000'

Test #16:

score: -100
Time Limit Exceeded

input:

16664 41
0.0012

output:


result: