QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#823478 | #9778. Brotato | ucup-team987# | AC ✓ | 428ms | 5512kb | C++20 | 1.6kb | 2024-12-21 01:41:19 | 2024-12-21 01:41:20 |
Judging History
answer
#include<iostream>
#include<cassert>
#include<iomanip>
#include<cmath>
using namespace std;
long double dp[100001];
int N,K;
long double P;
long double solve()
{
{//k=0
dp[0]=(pow(1/(1-P),N)-1)/P;
dp[N]=0;
for(int n=N-1;n>0;n--)
{
long double cur=1+(1-P)*dp[n+1]+P*dp[0];
dp[n]=cur;
}
}
int now=0;
for(int k=1;k<=K;k++)
{
int l=-1,r=N;
while(r-l>1)
{
int m=(l+r)/2;
long double a=0,b=0;
for(int n=N-1;n>=0;n--)
{
if(n>=m)a=1+(1-P)*a+P*dp[n],b=b*(1-P);
else a=1+(1-P)*a,b=b*(1-P)+P;
}
//a+bx=x
//x=a/(1-b)
long double x=a/(1-b);
if(dp[m]>x)l=m;
else r=m;
}
{
long double a=0,b=0;
for(int n=N-1;n>=0;n--)
{
if(n>=r)a=1+(1-P)*a+P*dp[n],b=b*(1-P);
else a=1+(1-P)*a,b=b*(1-P)+P;
}
//a+bx=x
//x=a/(1-b)
long double x=a/(1-b);
dp[N]=0;
dp[0]=x;
for(int n=N-1;n>=1;n--)
{
if(n>=r)dp[n]=1+(1-P)*dp[n+1]+P*dp[n];
else dp[n]=1+(1-P)*dp[n+1]+P*x;
}
//cout<<r<<" "<<dp[k][0]<<endl;
}
if(r==0)break;
/*
long double l=0,r=dp[k-1][0];
for(int t=0;t<100;t++)
{
long double m=(l+r)/2;
for(int n=N-1;n>=0;n--)
{
long double cur=1+(1-P)*dp[k][n+1]+P*min(dp[k-1][n],m);
dp[k][n]=cur;
}
if(dp[k][0]<m)r=m;
else l=m;
}
{
for(int n=N-1;n>=0;n--)
{
long double cur=1+(1-P)*dp[k][n+1]+P*min(dp[k-1][n],l);
dp[k][n]=cur;
}
cout<<l<<" "<<dp[k][0]<<endl;
}
*/
}
return dp[0];
}
int main()
{
ios::sync_with_stdio(false);
cin.tie(nullptr);
cin>>N>>K>>P;
cout<<fixed<<setprecision(16)<<solve()<<endl;
}
这程序好像有点Bug,我给组数据试试?
詳細信息
Test #1:
score: 100
Accepted
time: 0ms
memory: 3900kb
input:
5 0 0.5
output:
62.0000000000000000
result:
ok found '62.000000000', expected '62.000000000', error '0.000000000'
Test #2:
score: 0
Accepted
time: 0ms
memory: 3984kb
input:
5 1 0.5
output:
47.0000000000000000
result:
ok found '47.000000000', expected '47.000000000', error '0.000000000'
Test #3:
score: 0
Accepted
time: 1ms
memory: 4080kb
input:
10000 0 0.002
output:
247489700298.2535711228847504
result:
ok found '247489700298.253570557', expected '247489700298.253692627', error '0.000000000'
Test #4:
score: 0
Accepted
time: 45ms
memory: 5420kb
input:
100000 10 0.0002
output:
38767507133.4694275557994843
result:
ok found '38767507133.469429016', expected '38767507133.232215881', error '0.000000000'
Test #5:
score: 0
Accepted
time: 1ms
memory: 5492kb
input:
100000 0 0.0002
output:
2430683127170.3810408115386963
result:
ok found '2430683127170.380859375', expected '2430683127170.376953125', error '0.000000000'
Test #6:
score: 0
Accepted
time: 91ms
memory: 5456kb
input:
100000 20 0.0002
output:
801073272.2322335359640419
result:
ok found '801073272.232233524', expected '801073272.231680870', error '0.000000000'
Test #7:
score: 0
Accepted
time: 191ms
memory: 5480kb
input:
100000 40 0.0002
output:
478148.7184263304748697
result:
ok found '478148.718426330', expected '478148.718426307', error '0.000000000'
Test #8:
score: 0
Accepted
time: 19ms
memory: 5420kb
input:
99995 4 0.0001
output:
38976542.8681758908242045
result:
ok found '38976542.868175894', expected '38976542.868175834', error '0.000000000'
Test #9:
score: 0
Accepted
time: 46ms
memory: 5292kb
input:
99995 10 0.0001
output:
3549184.5977120233444566
result:
ok found '3549184.597712023', expected '3549184.597712017', error '0.000000000'
Test #10:
score: 0
Accepted
time: 76ms
memory: 5420kb
input:
99995 16 0.0001
output:
399507.4705567426319703
result:
ok found '399507.470556743', expected '399507.470556742', error '0.000000000'
Test #11:
score: 0
Accepted
time: 34ms
memory: 5400kb
input:
99990 8 0.0001
output:
7773463.9479307352567048
result:
ok found '7773463.947930736', expected '7773463.947930722', error '0.000000000'
Test #12:
score: 0
Accepted
time: 43ms
memory: 5416kb
input:
99990 10 0.0001
output:
3547428.9454723030989953
result:
ok found '3547428.945472303', expected '3547428.945472297', error '0.000000000'
Test #13:
score: 0
Accepted
time: 56ms
memory: 5484kb
input:
99990 12 0.0001
output:
1647102.0204343987188622
result:
ok found '1647102.020434399', expected '1647102.020434395', error '0.000000000'
Test #14:
score: 0
Accepted
time: 0ms
memory: 4104kb
input:
16664 1 0.0012
output:
257920044607.8165942281484604
result:
ok found '257920044607.816589355', expected '257920044630.860534668', error '0.000000000'
Test #15:
score: 0
Accepted
time: 14ms
memory: 4164kb
input:
16664 21 0.0012
output:
92190688.5438223624514649
result:
ok found '92190688.543822363', expected '92190688.544415027', error '0.000000000'
Test #16:
score: 0
Accepted
time: 29ms
memory: 4088kb
input:
16664 41 0.0012
output:
59865.0917856703534881
result:
ok found '59865.091785670', expected '59865.091785920', error '0.000000000'
Test #17:
score: 0
Accepted
time: 4ms
memory: 4184kb
input:
16659 5 0.0003
output:
63366.2644069547646808
result:
ok found '63366.264406955', expected '63366.264406955', error '0.000000000'
Test #18:
score: 0
Accepted
time: 8ms
memory: 4180kb
input:
16659 11 0.0003
output:
18120.9118635425324104
result:
ok found '18120.911863543', expected '18120.911863543', error '0.000000000'
Test #19:
score: 0
Accepted
time: 13ms
memory: 4184kb
input:
16659 17 0.0003
output:
16666.5554519674055776
result:
ok found '16666.555451967', expected '16666.555451967', error '0.000000000'
Test #20:
score: 0
Accepted
time: 7ms
memory: 3992kb
input:
16654 9 0.0001
output:
16656.0794165756262935
result:
ok found '16656.079416576', expected '16656.079416576', error '0.000000000'
Test #21:
score: 0
Accepted
time: 9ms
memory: 4192kb
input:
16654 11 0.0001
output:
16655.6741221724014022
result:
ok found '16655.674122172', expected '16655.674122172', error '0.000000000'
Test #22:
score: 0
Accepted
time: 11ms
memory: 4172kb
input:
16654 13 0.0001
output:
16655.6656953626671083
result:
ok found '16655.665695363', expected '16655.665695363', error '0.000000000'
Test #23:
score: 0
Accepted
time: 1ms
memory: 3968kb
input:
2774 2 0.0072
output:
28951389307.3670140076428652
result:
ok found '28951389307.367015839', expected '28951389306.987514496', error '0.000000000'
Test #24:
score: 0
Accepted
time: 2ms
memory: 3872kb
input:
2774 22 0.0072
output:
11312241.4506548112412929
result:
ok found '11312241.450654812', expected '11312241.450653942', error '0.000000000'
Test #25:
score: 0
Accepted
time: 4ms
memory: 3840kb
input:
2774 42 0.0072
output:
8222.4151085088861812
result:
ok found '8222.415108509', expected '8222.415108509', error '0.000000000'
Test #26:
score: 0
Accepted
time: 0ms
memory: 3932kb
input:
2769 6 0.0021
output:
13600.5823557316111625
result:
ok found '13600.582355732', expected '13600.582355732', error '0.000000000'
Test #27:
score: 0
Accepted
time: 2ms
memory: 3956kb
input:
2769 12 0.0021
output:
3239.5499782111263403
result:
ok found '3239.549978211', expected '3239.549978211', error '0.000000000'
Test #28:
score: 0
Accepted
time: 2ms
memory: 4020kb
input:
2769 18 0.0021
output:
2776.6281948752404161
result:
ok found '2776.628194875', expected '2776.628194875', error '0.000000000'
Test #29:
score: 0
Accepted
time: 1ms
memory: 3964kb
input:
2764 10 0.0007
output:
2765.9870739550863794
result:
ok found '2765.987073955', expected '2765.987073955', error '0.000000000'
Test #30:
score: 0
Accepted
time: 2ms
memory: 4016kb
input:
2764 12 0.0007
output:
2765.9373628499719751
result:
ok found '2765.937362850', expected '2765.937362850', error '0.000000000'
Test #31:
score: 0
Accepted
time: 0ms
memory: 3896kb
input:
2764 14 0.0007
output:
2765.9361767034727062
result:
ok found '2765.936176703', expected '2765.936176704', error '0.000000000'
Test #32:
score: 0
Accepted
time: 291ms
memory: 5460kb
input:
100000 1000000000 0.0001
output:
100010.0010001000535951
result:
ok found '100010.001000100', expected '100010.001000100', error '0.000000000'
Test #33:
score: 0
Accepted
time: 0ms
memory: 3920kb
input:
1 1000000000 0.5
output:
2.0000000000000000
result:
ok found '2.000000000', expected '2.000000000', error '0.000000000'
Test #34:
score: 0
Accepted
time: 0ms
memory: 3936kb
input:
50 50 0.25
output:
66.7341873337045273
result:
ok found '66.734187334', expected '66.734187334', error '0.000000000'
Test #35:
score: 0
Accepted
time: 0ms
memory: 3892kb
input:
40 100 0.5
output:
788.6331239662723213
result:
ok found '788.633123966', expected '788.633123966', error '0.000000000'
Test #36:
score: 0
Accepted
time: 0ms
memory: 3824kb
input:
40 160 0.5
output:
80.0000002552479201
result:
ok found '80.000000255', expected '80.000000255', error '0.000000000'
Test #37:
score: 0
Accepted
time: 0ms
memory: 3900kb
input:
40 162 0.5
output:
80.0000000982337422
result:
ok found '80.000000098', expected '80.000000098', error '0.000000000'
Test #38:
score: 0
Accepted
time: 1ms
memory: 3912kb
input:
40 1000000000 0.5
output:
80.0000000000000000
result:
ok found '80.000000000', expected '80.000000000', error '0.000000000'
Test #39:
score: 0
Accepted
time: 0ms
memory: 3856kb
input:
40 0 0.5000
output:
2199023255550.0000000000000000
result:
ok found '2199023255550.000000000', expected '2199023255550.000000000', error '0.000000000'
Test #40:
score: 0
Accepted
time: 0ms
memory: 3856kb
input:
40 1 0.5000
output:
1649267441663.0000000000000000
result:
ok found '1649267441663.000000000', expected '1649267441663.000000000', error '0.000000000'
Test #41:
score: 0
Accepted
time: 0ms
memory: 3908kb
input:
40 2 0.5000
output:
1236950581248.2500000000000000
result:
ok found '1236950581248.250000000', expected '1236950581248.250000000', error '0.000000000'
Test #42:
score: 0
Accepted
time: 0ms
memory: 3936kb
input:
40 3 0.5000
output:
962072674305.0000000000000000
result:
ok found '962072674305.000000000', expected '962072674305.000000000', error '0.000000000'
Test #43:
score: 0
Accepted
time: 0ms
memory: 4000kb
input:
40 4 0.5000
output:
738734374914.2187500000000000
result:
ok found '738734374914.218750000', expected '738734374914.218750000', error '0.000000000'
Test #44:
score: 0
Accepted
time: 0ms
memory: 3856kb
input:
40 5 0.5000
output:
575525617666.9531250000000000
result:
ok found '575525617666.953125000', expected '575525617666.953125000', error '0.000000000'
Test #45:
score: 0
Accepted
time: 0ms
memory: 3836kb
input:
40 10 0.5000
output:
173409304583.1325683593750000
result:
ok found '173409304583.132568359', expected '173409304583.132568359', error '0.000000000'
Test #46:
score: 0
Accepted
time: 0ms
memory: 3844kb
input:
40 15 0.5000
output:
55390502923.0735082626342773
result:
ok found '55390502923.073509216', expected '55390502923.073509216', error '0.000000000'
Test #47:
score: 0
Accepted
time: 0ms
memory: 3728kb
input:
40 20 0.5000
output:
18180087821.7474045008420944
result:
ok found '18180087821.747406006', expected '18180087821.747406006', error '0.000000000'
Test #48:
score: 0
Accepted
time: 0ms
memory: 3936kb
input:
40 25 0.5000
output:
5963269457.3187836017459631
result:
ok found '5963269457.318783760', expected '5963269457.318783760', error '0.000000000'
Test #49:
score: 0
Accepted
time: 0ms
memory: 3924kb
input:
40 30 0.5000
output:
2008652291.2097989809699357
result:
ok found '2008652291.209799051', expected '2008652291.209799051', error '0.000000000'
Test #50:
score: 0
Accepted
time: 0ms
memory: 3816kb
input:
40 35 0.5000
output:
676323760.7668040632852353
result:
ok found '676323760.766804099', expected '676323760.766804099', error '0.000000000'
Test #51:
score: 0
Accepted
time: 0ms
memory: 3980kb
input:
40 40 0.5000
output:
231036317.1178015729819890
result:
ok found '231036317.117801577', expected '231036317.117801577', error '0.000000000'
Test #52:
score: 0
Accepted
time: 0ms
memory: 3888kb
input:
40 45 0.5000
output:
79224360.2456898969394388
result:
ok found '79224360.245689899', expected '79224360.245689899', error '0.000000000'
Test #53:
score: 0
Accepted
time: 0ms
memory: 3912kb
input:
40 50 0.5000
output:
27134304.8508336108789081
result:
ok found '27134304.850833610', expected '27134304.850833610', error '0.000000000'
Test #54:
score: 0
Accepted
time: 0ms
memory: 3860kb
input:
2 1 0.0001
output:
2.0002000300040005
result:
ok found '2.000200030', expected '2.000200030', error '0.000000000'
Test #55:
score: 0
Accepted
time: 0ms
memory: 3820kb
input:
2 0 0.0001
output:
2.0003000400050015
result:
ok found '2.000300040', expected '2.000300040', error '0.000000000'
Test #56:
score: 0
Accepted
time: 0ms
memory: 3860kb
input:
2 2 0.0001
output:
2.0002000200030004
result:
ok found '2.000200020', expected '2.000200020', error '0.000000000'
Test #57:
score: 0
Accepted
time: 0ms
memory: 3908kb
input:
2 3 0.0001
output:
2.0002000200020003
result:
ok found '2.000200020', expected '2.000200020', error '0.000000000'
Test #58:
score: 0
Accepted
time: 299ms
memory: 5484kb
input:
100000 60 0.0002
output:
100020.2748383050496983
result:
ok found '100020.274838305', expected '100020.274838305', error '0.000000000'
Test #59:
score: 0
Accepted
time: 407ms
memory: 5480kb
input:
100000 80 0.0002
output:
100020.0040008002509211
result:
ok found '100020.004000800', expected '100020.004000800', error '0.000000000'
Test #60:
score: 0
Accepted
time: 428ms
memory: 5484kb
input:
100000 100 0.0002
output:
100020.0040008002483631
result:
ok found '100020.004000800', expected '100020.004000800', error '0.000000000'
Test #61:
score: 0
Accepted
time: 428ms
memory: 5512kb
input:
100000 120 0.0002
output:
100020.0040008002483631
result:
ok found '100020.004000800', expected '100020.004000800', error '0.000000000'
Test #62:
score: 0
Accepted
time: 428ms
memory: 5356kb
input:
100000 140 0.0002
output:
100020.0040008002483631
result:
ok found '100020.004000800', expected '100020.004000800', error '0.000000000'
Test #63:
score: 0
Accepted
time: 424ms
memory: 5356kb
input:
100000 180 0.0002
output:
100020.0040008002483631
result:
ok found '100020.004000800', expected '100020.004000800', error '0.000000000'
Test #64:
score: 0
Accepted
time: 272ms
memory: 5468kb
input:
100000 55 0.0002
output:
100070.8503282032799859
result:
ok found '100070.850328203', expected '100070.850328203', error '0.000000000'
Test #65:
score: 0
Accepted
time: 237ms
memory: 5416kb
input:
100000 50 0.0002
output:
103207.6841930910174270
result:
ok found '103207.684193091', expected '103207.684193091', error '0.000000000'
Extra Test:
score: 0
Extra Test Passed