QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#825600#9778. Brotatoucup-team1134#TL 714ms198104kbC++233.1kb2024-12-21 20:43:272024-12-21 20:43:29

Judging History

This is the latest submission verdict.

  • [2024-12-21 20:43:29]
  • Judged
  • Verdict: TL
  • Time: 714ms
  • Memory: 198104kb
  • [2024-12-21 20:43:27]
  • 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 _Float128
ld dp[MAX][123];

pair<ld,ld> db[77];

int main(){
    
    std::ifstream in("text.txt");
    std::cin.rdbuf(in.rdbuf());
    cin.tie(0);
    ios::sync_with_stdio(false);
    
    ll N,K;
    double ppp;
    ld P;cin>>N>>K>>ppp;
    P=ppp;
    ll pp=roundl(ppp*10000),qq=10000-pp,rr=10000;
    chmin(K,120LL);
    
    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--){
            if(dp[i+1][j]<1e4){
                long double s=((long double)(dp[i+1][j])*(qq)+(long double)(dp[i][j-1])*(pp))/(long double)rr+1;
                dp[i][j]=s;
            }else{
                dp[i][j]=(dp[i+1][j]*qq+dp[i][j-1]*pp+rr)/rr;
            }
        }
        ld l=0,r=1e14;
        for(int q=0;q<100;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;
            }
            db[0]=mp((ld)(qq)/rr,(ld)(m*pp)/rr+1);
            for(int s=1;s<=40;s++){
                auto [a,b]=db[s-1];
                db[s]=mp(a*a,a*b+b);
            }
            ld s=dp[R][j];
            int cn=L+1;
            for(int t=0;t<=20;t++){
                if(cn&(1<<t)){
                    s=db[t].fi*s+db[t].se;
                }
            }
            if(s>m) l=m;
            else r=m;
        }
        ld m=(l+r)/2;
        for(int i=N-1;i>=0;i--){
            if(dp[i][j-1]>m){
                if(dp[i+1][j]<1e4){
                    long double s=((long double)(dp[i+1][j])*qq+(long double)(m)*pp)/(long double)rr+1;
                    dp[i][j]=s;
                }else{
                    dp[i][j]=(dp[i+1][j]*qq+m*pp+rr)/rr;
                }
            }
        }
        //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)(dp[0][K])<<endl;
}


详细

Test #1:

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

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: 3928kb

input:

5 1
0.5

output:

46.9999999999999999826527652

result:

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

Test #3:

score: 0
Accepted
time: 3ms
memory: 24900kb

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: 218ms
memory: 196520kb

input:

100000 10
0.0002

output:

38767507133.2322831861674785614013672

result:

ok found '38767507133.232284546', expected '38767507133.232215881', error '0.000000000'

Test #5:

score: 0
Accepted
time: 12ms
memory: 197364kb

input:

100000 0
0.0002

output:

2430683127170.3809037208557128906250000

result:

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

Test #6:

score: 0
Accepted
time: 395ms
memory: 196180kb

input:

100000 20
0.0002

output:

801073272.2316822390421293675899506

result:

ok found '801073272.231682181', expected '801073272.231680870', error '0.000000000'

Test #7:

score: 0
Accepted
time: 714ms
memory: 197624kb

input:

100000 40
0.0002

output:

478148.7184263073959300527349114

result:

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

Test #8:

score: 0
Accepted
time: 85ms
memory: 196652kb

input:

99995 4
0.0001

output:

38976542.8681758679813356138765812

result:

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

Test #9:

score: 0
Accepted
time: 210ms
memory: 198104kb

input:

99995 10
0.0001

output:

3549184.5977120199720502569107339

result:

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

Test #10:

score: 0
Accepted
time: 301ms
memory: 197884kb

input:

99995 16
0.0001

output:

399507.4705567421891316826076945

result:

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

Test #11:

score: 0
Accepted
time: 161ms
memory: 196128kb

input:

99990 8
0.0001

output:

7773463.9479307274573329777922481

result:

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

Test #12:

score: 0
Accepted
time: 197ms
memory: 196224kb

input:

99990 10
0.0001

output:

3547428.9454722998434590408578515

result:

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

Test #13:

score: 0
Accepted
time: 239ms
memory: 197512kb

input:

99990 12
0.0001

output:

1647102.0204343966778424146468751

result:

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

Test #14:

score: 0
Accepted
time: 9ms
memory: 37964kb

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: 72ms
memory: 36676kb

input:

16664 21
0.0012

output:

92190688.5444150149050983600318432

result:

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

Test #16:

score: 0
Accepted
time: 119ms
memory: 37856kb

input:

16664 41
0.0012

output:

59865.0917859199102899481204076

result:

ok found '59865.091785920', expected '59865.091785920', error '0.000000000'

Test #17:

score: 0
Accepted
time: 13ms
memory: 37820kb

input:

16659 5
0.0003

output:

63366.2644069547702940781164216

result:

ok found '63366.264406955', expected '63366.264406955', error '0.000000000'

Test #18:

score: 0
Accepted
time: 28ms
memory: 36064kb

input:

16659 11
0.0003

output:

18120.9118635425287369145053162

result:

ok found '18120.911863543', expected '18120.911863543', error '0.000000000'

Test #19:

score: 0
Accepted
time: 40ms
memory: 36216kb

input:

16659 17
0.0003

output:

16666.5554519674019502417650074

result:

ok found '16666.555451967', expected '16666.555451967', error '0.000000000'

Test #20:

score: 0
Accepted
time: 19ms
memory: 37204kb

input:

16654 9
0.0001

output:

16656.0794165756250677645766700

result:

ok found '16656.079416576', expected '16656.079416576', error '0.000000000'

Test #21:

score: 0
Accepted
time: 18ms
memory: 36064kb

input:

16654 11
0.0001

output:

16655.6741221724001889015198685

result:

ok found '16655.674122172', expected '16655.674122172', error '0.000000000'

Test #22:

score: 0
Accepted
time: 33ms
memory: 36852kb

input:

16654 13
0.0001

output:

16655.6656953626658612677147175

result:

ok found '16655.665695363', expected '16655.665695363', error '0.000000000'

Test #23:

score: 0
Accepted
time: 4ms
memory: 10800kb

input:

2774 2
0.0072

output:

28951389306.9875127002596855163574219

result:

ok found '28951389306.987514496', expected '28951389306.987514496', error '0.000000000'

Test #24:

score: 0
Accepted
time: 17ms
memory: 10848kb

input:

2774 22
0.0072

output:

11312241.4506539416843224898912013

result:

ok found '11312241.450653942', expected '11312241.450653942', error '0.000000000'

Test #25:

score: 0
Accepted
time: 28ms
memory: 9344kb

input:

2774 42
0.0072

output:

8222.4151085086183874395260318

result:

ok found '8222.415108509', expected '8222.415108509', error '0.000000000'

Test #26:

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

input:

2769 6
0.0021

output:

13600.5823557316113934234635963

result:

ok found '13600.582355732', expected '13600.582355732', error '0.000000000'

Test #27:

score: 0
Accepted
time: 4ms
memory: 9692kb

input:

2769 12
0.0021

output:

3239.5499782111262550010621908

result:

ok found '3239.549978211', expected '3239.549978211', error '0.000000000'

Test #28:

score: 0
Accepted
time: 11ms
memory: 10332kb

input:

2769 18
0.0021

output:

2776.6281948752403319069514964

result:

ok found '2776.628194875', expected '2776.628194875', error '0.000000000'

Test #29:

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

input:

2764 10
0.0007

output:

2765.9870739550863572020489300

result:

ok found '2765.987073955', expected '2765.987073955', error '0.000000000'

Test #30:

score: 0
Accepted
time: 7ms
memory: 9984kb

input:

2764 12
0.0007

output:

2765.9373628499719486306673844

result:

ok found '2765.937362850', expected '2765.937362850', error '0.000000000'

Test #31:

score: 0
Accepted
time: 8ms
memory: 10660kb

input:

2764 14
0.0007

output:

2765.9361767034726751202100559

result:

ok found '2765.936176703', expected '2765.936176704', error '0.000000000'

Test #32:

score: -100
Time Limit Exceeded

input:

100000 1000000000
0.0001

output:

100010.0010001000096266920991184

result: