QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#825789 | #9778. Brotato | ucup-team191# | RE | 813ms | 72544kb | C++23 | 1.9kb | 2024-12-21 23:10:04 | 2024-12-21 23:10:10 |
Judging History
answer
#include <bits/stdc++.h>
#define x first
#define y second
using namespace std;
using ld=__float128;
//using ld=long double;
using pii=pair<int,int>;
using vi=vector<int>;
using ll=long long;
using vl=vector<ll>;
#define pb push_back
#define all(a) begin(a),end(a)
const int N=100010,MOD=1e9+7;
const char en='\n';
const ll LLINF=1ll<<60;
int n,k;
ld dp[310][N],p;
pair<ld,ld> id={1,0},po[N];
pair<ld,ld> mul(pair<ld,ld> a,pair<ld,ld> b) //*.x+.y
{
return {a.x*b.x,a.y*b.x+b.y};
}
pair<ld,ld> pot(pair<ld,ld> a,int c)
{
pair<ld,ld> an=id,cu=a;
for (;c;c/=2)
{
if (c%2) an=mul(an,cu);
cu=mul(cu,cu);
}
return an;
//return {pow(a.x,(ld)c),a.y*(1-pow(a.x,(ld)c))/(1-a.x)};
}
int main()
{
ios_base::sync_with_stdio(0);
cin.tie(0);
cout<<fixed<<setprecision(15);
long double pr;
cin>>n>>k>>pr;
p=pr;
po[0]=id;
for (int i=1;i<=n;++i) po[i]=mul(po[i-1],{1.L-p,1.L});
//k=0
auto re=po[n];
//x=a*re.x+re.y*(px+1)
//x(1-re.y*p)=a*re.x+re.y
//x=(a*re.x+re.y)/(1-re.y*p)
dp[0][0]=re.y/(1-re.y*p);
for (int i=n-1;i>=1;--i) dp[0][i]=p*dp[0][0]+(1-p)*dp[0][i+1]+1;
int md=n;
for (int z=1;z<=k;++z)
{
ld mi=dp[0][0];
int kak=md;
for (int i=n-1;i>=0;--i)
{
ld a=(1-p)*dp[z][i+1]+p*dp[z-1][i]+1;
ld nov0=(a*po[i].x+po[i].y)/(1-po[i].y*p);
if (nov0<mi)
{
mi=nov0;
kak=i;
}
dp[z][i]=a;
//cout<<z<<' '<<i<<' '<<(long double)nov0<<en;
}
assert(kak!=n);
//cout<<z<<' '<<kak<<en;
md=kak;
dp[z][0]=mi;
for (int i=kak-1;i>=1;--i)
{
ld o2=p*dp[z][0]+(1-p)*dp[z][i+1]+1;
dp[z][i]=o2;
}
if (mi<(n/(1-p))*(1+1e-10))
{
cout<<(long double)(n/(1-p))<<en;
exit(0);
}
//cout<<(long double)(p*dp[z][0]+(1-p)*dp[z][1]+1)<<' '<<(long double)mi<<endl;
}
//for (int i=0;i<=k;++i,cout<<en) for (int j=0;j<=n;++j) cout<<(long double)dp[i][j]<<' ';
cout<<(long double)dp[k][0]<<en;
//cout<<(long double)(n/(1-p))<<en;
}
详细
Test #1:
score: 100
Accepted
time: 1ms
memory: 5788kb
input:
5 0 0.5
output:
62.000000000000000
result:
ok found '62.000000000', expected '62.000000000', error '0.000000000'
Test #2:
score: 0
Accepted
time: 1ms
memory: 5876kb
input:
5 1 0.5
output:
47.000000000000000
result:
ok found '47.000000000', expected '47.000000000', error '0.000000000'
Test #3:
score: 0
Accepted
time: 2ms
memory: 6092kb
input:
10000 0 0.002
output:
247489700298.253713130950928
result:
ok found '247489700298.253723145', expected '247489700298.253692627', error '0.000000000'
Test #4:
score: 0
Accepted
time: 232ms
memory: 24100kb
input:
100000 10 0.0002
output:
38767507133.232283197343349
result:
ok found '38767507133.232284546', expected '38767507133.232215881', error '0.000000000'
Test #5:
score: 0
Accepted
time: 12ms
memory: 8720kb
input:
100000 0 0.0002
output:
2430683127170.380904436111450
result:
ok found '2430683127170.380859375', expected '2430683127170.376953125', error '0.000000000'
Test #6:
score: 0
Accepted
time: 439ms
memory: 39968kb
input:
100000 20 0.0002
output:
801073272.231682239216752
result:
ok found '801073272.231682181', expected '801073272.231680870', error '0.000000000'
Test #7:
score: 0
Accepted
time: 813ms
memory: 71108kb
input:
100000 40 0.0002
output:
478148.718426307395958
result:
ok found '478148.718426307', expected '478148.718426307', error '0.000000000'
Test #8:
score: 0
Accepted
time: 103ms
memory: 14760kb
input:
99995 4 0.0001
output:
38976542.868175867984974
result:
ok found '38976542.868175872', expected '38976542.868175834', error '0.000000000'
Test #9:
score: 0
Accepted
time: 230ms
memory: 24216kb
input:
99995 10 0.0001
output:
3549184.597712019972505
result:
ok found '3549184.597712020', expected '3549184.597712017', error '0.000000000'
Test #10:
score: 0
Accepted
time: 337ms
memory: 33720kb
input:
99995 16 0.0001
output:
399507.470556742189189
result:
ok found '399507.470556742', expected '399507.470556742', error '0.000000000'
Test #11:
score: 0
Accepted
time: 183ms
memory: 21092kb
input:
99990 8 0.0001
output:
7773463.947930727458242
result:
ok found '7773463.947930727', expected '7773463.947930722', error '0.000000000'
Test #12:
score: 0
Accepted
time: 221ms
memory: 24136kb
input:
99990 10 0.0001
output:
3547428.945472299843914
result:
ok found '3547428.945472300', expected '3547428.945472297', error '0.000000000'
Test #13:
score: 0
Accepted
time: 260ms
memory: 27172kb
input:
99990 12 0.0001
output:
1647102.020434396677956
result:
ok found '1647102.020434397', expected '1647102.020434395', error '0.000000000'
Test #14:
score: 0
Accepted
time: 3ms
memory: 8620kb
input:
16664 1 0.0012
output:
257920044630.860532298684120
result:
ok found '257920044630.860534668', expected '257920044630.860534668', error '0.000000000'
Test #15:
score: 0
Accepted
time: 77ms
memory: 11752kb
input:
16664 21 0.0012
output:
92190688.544415014926926
result:
ok found '92190688.544415012', expected '92190688.544415027', error '0.000000000'
Test #16:
score: 0
Accepted
time: 144ms
memory: 17484kb
input:
16664 41 0.0012
output:
59865.091785919910294
result:
ok found '59865.091785920', expected '59865.091785920', error '0.000000000'
Test #17:
score: 0
Accepted
time: 17ms
memory: 7768kb
input:
16659 5 0.0003
output:
63366.264406954770298
result:
ok found '63366.264406955', expected '63366.264406955', error '0.000000000'
Test #18:
score: 0
Accepted
time: 37ms
memory: 9420kb
input:
16659 11 0.0003
output:
18120.911863542528749
result:
ok found '18120.911863543', expected '18120.911863543', error '0.000000000'
Test #19:
score: 0
Accepted
time: 59ms
memory: 10624kb
input:
16659 17 0.0003
output:
16666.555451967401954
result:
ok found '16666.555451967', expected '16666.555451967', error '0.000000000'
Test #20:
score: 0
Accepted
time: 32ms
memory: 8584kb
input:
16654 9 0.0001
output:
16656.079416575625084
result:
ok found '16656.079416576', expected '16656.079416576', error '0.000000000'
Test #21:
score: 0
Accepted
time: 38ms
memory: 9348kb
input:
16654 11 0.0001
output:
16655.674122172400200
result:
ok found '16655.674122172', expected '16655.674122172', error '0.000000000'
Test #22:
score: 0
Accepted
time: 37ms
memory: 9788kb
input:
16654 13 0.0001
output:
16655.665695362665854
result:
ok found '16655.665695363', expected '16655.665695363', error '0.000000000'
Test #23:
score: 0
Accepted
time: 0ms
memory: 6068kb
input:
2774 2 0.0072
output:
28951389306.987512690946460
result:
ok found '28951389306.987514496', expected '28951389306.987514496', error '0.000000000'
Test #24:
score: 0
Accepted
time: 11ms
memory: 6948kb
input:
2774 22 0.0072
output:
11312241.450653941680685
result:
ok found '11312241.450653942', expected '11312241.450653942', error '0.000000000'
Test #25:
score: 0
Accepted
time: 23ms
memory: 7840kb
input:
2774 42 0.0072
output:
8222.415108508618382
result:
ok found '8222.415108509', expected '8222.415108509', error '0.000000000'
Test #26:
score: 0
Accepted
time: 2ms
memory: 6312kb
input:
2769 6 0.0021
output:
13600.582355731611397
result:
ok found '13600.582355732', expected '13600.582355732', error '0.000000000'
Test #27:
score: 0
Accepted
time: 8ms
memory: 6464kb
input:
2769 12 0.0021
output:
3239.549978211126251
result:
ok found '3239.549978211', expected '3239.549978211', error '0.000000000'
Test #28:
score: 0
Accepted
time: 12ms
memory: 6876kb
input:
2769 18 0.0021
output:
2776.628194875240334
result:
ok found '2776.628194875', expected '2776.628194875', error '0.000000000'
Test #29:
score: 0
Accepted
time: 7ms
memory: 6372kb
input:
2764 10 0.0007
output:
2765.987073955086354
result:
ok found '2765.987073955', expected '2765.987073955', error '0.000000000'
Test #30:
score: 0
Accepted
time: 8ms
memory: 6552kb
input:
2764 12 0.0007
output:
2765.937362849971948
result:
ok found '2765.937362850', expected '2765.937362850', error '0.000000000'
Test #31:
score: 0
Accepted
time: 10ms
memory: 8620kb
input:
2764 14 0.0007
output:
2765.936176703472679
result:
ok found '2765.936176703', expected '2765.936176704', error '0.000000000'
Test #32:
score: 0
Accepted
time: 798ms
memory: 72544kb
input:
100000 1000000000 0.0001
output:
100010.001000100010003
result:
ok found '100010.001000100', expected '100010.001000100', error '0.000000000'
Test #33:
score: -100
Runtime Error
input:
1 1000000000 0.5