QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#824709#9778. Brotatoucup-team3586#AC ✓193ms164860kbC++231.3kb2024-12-21 15:21:232024-12-21 15:21:25

Judging History

你现在查看的是最新测评结果

  • [2024-12-21 15:21:25]
  • 评测
  • 测评结果:AC
  • 用时:193ms
  • 内存:164860kb
  • [2024-12-21 15:21:23]
  • 提交

answer

#include<bits/stdc++.h>
#pragma GCC optimize("Ofast")
#pragma GCC optimize("unroll-loops")
#pragma GCC target("sse,sse2,sse3,ssse3,sse4,popcnt,abm,mmx,avx,avx2,tune=native")
using namespace std;
inline int read(){
   int s=0,w=1;
   char ch=getchar();
   while(ch<'0'||ch>'9'){if(ch=='-')w=-1;ch=getchar();}
   while(ch>='0'&&ch<='9') s=s*10+ch-'0',ch=getchar();
   return s*w;
}
// #define ld __float128
#define ld long double
ld f[501][100003];
int n=read(),m=read();
ld p;
ld pw[100003],ipw[100003];
void init()
{
	ld t=(1-pw[n])/p*ipw[n];
		for(int i=n-1; i>=0; --i)
			f[0][i]=p*t+(1-p)*f[0][i+1]+1;
}
signed main()
{
	if(n<=10000) m=min(m,500);
	else m=min(m,100);
	double p_;
	cin>>p_;
	p=p_;
	pw[0]=ipw[0]=1;
	for(int i=1; i<=n; ++i) pw[i]=pw[i-1]*(1-p);
	ld inv=1.0L/(1.0L-p);
	for(int i=1; i<=n; ++i) ipw[i]=ipw[i-1]*inv;
	init();
	for(int d=1; d<=m; ++d)
	{
		ld t=1e18;
		for(int i=n; i>=0; --i)
		{
			if(i!=n) f[d][i]=p*f[d-1][i]+(1-p)*f[d][i+1]+1;
			t=min(t,(1-pw[i])/p*ipw[i]+f[d][i]);
			// printf("%.1Lf\n",(long double)((1-pw[i])/(1-p)/pw[i]+f[d][i]));
		}
		// return 0;
		// printf("%.10Lf ",(long double)f[d][0]);
		for(int i=n-1; i>=0; --i)
			f[d][i]=p*min(t,f[d-1][i])+(1-p)*f[d][i+1]+1;
		// printf("%.10Lf\n",(long double)f[d][0]);
	}
	printf("%.10Lf\n",(long double)f[m][0]);
	return 0;
}

这程序好像有点Bug,我给组数据试试?

详细

Test #1:

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

input:

5 0
0.5

output:

62.0000000000

result:

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

Test #2:

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

input:

5 1
0.5

output:

47.0000000000

result:

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

Test #3:

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

input:

10000 0
0.002

output:

247489700298.2538365126

result:

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

Test #4:

score: 0
Accepted
time: 23ms
memory: 24228kb

input:

100000 10
0.0002

output:

38767507133.2323024869

result:

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

Test #5:

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

input:

100000 0
0.0002

output:

2430683127170.3817591667

result:

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

Test #6:

score: 0
Accepted
time: 41ms
memory: 39852kb

input:

100000 20
0.0002

output:

801073272.2316828532

result:

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

Test #7:

score: 0
Accepted
time: 55ms
memory: 71100kb

input:

100000 40
0.0002

output:

478148.7184263081

result:

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

Test #8:

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

input:

99995 4
0.0001

output:

38976542.8681760418

result:

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

Test #9:

score: 0
Accepted
time: 16ms
memory: 24228kb

input:

99995 10
0.0001

output:

3549184.5977120332

result:

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

Test #10:

score: 0
Accepted
time: 32ms
memory: 33452kb

input:

99995 16
0.0001

output:

399507.4705567433

result:

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

Test #11:

score: 0
Accepted
time: 15ms
memory: 21028kb

input:

99990 8
0.0001

output:

7773463.9479307550

result:

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

Test #12:

score: 0
Accepted
time: 16ms
memory: 24220kb

input:

99990 10
0.0001

output:

3547428.9454723115

result:

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

Test #13:

score: 0
Accepted
time: 29ms
memory: 27412kb

input:

99990 12
0.0001

output:

1647102.0204344019

result:

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

Test #14:

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

input:

16664 1
0.0012

output:

257920044630.8600632697

result:

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

Test #15:

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

input:

16664 21
0.0012

output:

92190688.5444148510

result:

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

Test #16:

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

input:

16664 41
0.0012

output:

59865.0917859198

result:

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

Test #17:

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

input:

16659 5
0.0003

output:

63366.2644069547

result:

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

Test #18:

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

input:

16659 11
0.0003

output:

18120.9118635425

result:

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

Test #19:

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

input:

16659 17
0.0003

output:

16666.5554519674

result:

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

Test #20:

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

input:

16654 9
0.0001

output:

16656.0794165756

result:

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

Test #21:

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

input:

16654 11
0.0001

output:

16655.6741221724

result:

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

Test #22:

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

input:

16654 13
0.0001

output:

16655.6656953627

result:

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

Test #23:

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

input:

2774 2
0.0072

output:

28951389306.9874992091

result:

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

Test #24:

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

input:

2774 22
0.0072

output:

11312241.4506539362

result:

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

Test #25:

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

input:

2774 42
0.0072

output:

8222.4151085086

result:

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

Test #26:

score: 0
Accepted
time: 2ms
memory: 8232kb

input:

2769 6
0.0021

output:

13600.5823557316

result:

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

Test #27:

score: 0
Accepted
time: 2ms
memory: 6672kb

input:

2769 12
0.0021

output:

3239.5499782111

result:

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

Test #28:

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

input:

2769 18
0.0021

output:

2776.6281948752

result:

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

Test #29:

score: 0
Accepted
time: 2ms
memory: 8444kb

input:

2764 10
0.0007

output:

2765.9870739551

result:

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

Test #30:

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

input:

2764 12
0.0007

output:

2765.9373628500

result:

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

Test #31:

score: 0
Accepted
time: 2ms
memory: 8752kb

input:

2764 14
0.0007

output:

2765.9361767035

result:

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

Test #32:

score: 0
Accepted
time: 193ms
memory: 164852kb

input:

100000 1000000000
0.0001

output:

100010.0010001001

result:

ok found '100010.001000100', expected '100010.001000100', error '0.000000000'

Test #33:

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

input:

1 1000000000
0.5

output:

2.0000000000

result:

ok found '2.000000000', expected '2.000000000', error '0.000000000'

Test #34:

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

input:

50 50
0.25

output:

66.7341873337

result:

ok found '66.734187334', expected '66.734187334', error '0.000000000'

Test #35:

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

input:

40 100
0.5

output:

788.6331239663

result:

ok found '788.633123966', expected '788.633123966', error '0.000000000'

Test #36:

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

input:

40 160
0.5

output:

80.0000002552

result:

ok found '80.000000255', expected '80.000000255', error '0.000000000'

Test #37:

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

input:

40 162
0.5

output:

80.0000000982

result:

ok found '80.000000098', expected '80.000000098', error '0.000000000'

Test #38:

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

input:

40 1000000000
0.5

output:

80.0000000000

result:

ok found '80.000000000', expected '80.000000000', error '0.000000000'

Test #39:

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

input:

40 0
0.5000

output:

2199023255550.0000000000

result:

ok found '2199023255550.000000000', expected '2199023255550.000000000', error '0.000000000'

Test #40:

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

input:

40 1
0.5000

output:

1649267441663.0000000000

result:

ok found '1649267441663.000000000', expected '1649267441663.000000000', error '0.000000000'

Test #41:

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

input:

40 2
0.5000

output:

1236950581248.2500000000

result:

ok found '1236950581248.250000000', expected '1236950581248.250000000', error '0.000000000'

Test #42:

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

input:

40 3
0.5000

output:

962072674305.0000000000

result:

ok found '962072674305.000000000', expected '962072674305.000000000', error '0.000000000'

Test #43:

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

input:

40 4
0.5000

output:

738734374914.2187500000

result:

ok found '738734374914.218750000', expected '738734374914.218750000', error '0.000000000'

Test #44:

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

input:

40 5
0.5000

output:

575525617666.9531250000

result:

ok found '575525617666.953125000', expected '575525617666.953125000', error '0.000000000'

Test #45:

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

input:

40 10
0.5000

output:

173409304583.1325683594

result:

ok found '173409304583.132568359', expected '173409304583.132568359', error '0.000000000'

Test #46:

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

input:

40 15
0.5000

output:

55390502923.0735082626

result:

ok found '55390502923.073509216', expected '55390502923.073509216', error '0.000000000'

Test #47:

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

input:

40 20
0.5000

output:

18180087821.7474045008

result:

ok found '18180087821.747406006', expected '18180087821.747406006', error '0.000000000'

Test #48:

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

input:

40 25
0.5000

output:

5963269457.3187836017

result:

ok found '5963269457.318783760', expected '5963269457.318783760', error '0.000000000'

Test #49:

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

input:

40 30
0.5000

output:

2008652291.2097989810

result:

ok found '2008652291.209799051', expected '2008652291.209799051', error '0.000000000'

Test #50:

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

input:

40 35
0.5000

output:

676323760.7668040633

result:

ok found '676323760.766804099', expected '676323760.766804099', error '0.000000000'

Test #51:

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

input:

40 40
0.5000

output:

231036317.1178015730

result:

ok found '231036317.117801577', expected '231036317.117801577', error '0.000000000'

Test #52:

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

input:

40 45
0.5000

output:

79224360.2456898969

result:

ok found '79224360.245689899', expected '79224360.245689899', error '0.000000000'

Test #53:

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

input:

40 50
0.5000

output:

27134304.8508336109

result:

ok found '27134304.850833610', expected '27134304.850833610', error '0.000000000'

Test #54:

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

input:

2 1
0.0001

output:

2.0002000300

result:

ok found '2.000200030', expected '2.000200030', error '0.000000000'

Test #55:

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

input:

2 0
0.0001

output:

2.0003000400

result:

ok found '2.000300040', expected '2.000300040', error '0.000000000'

Test #56:

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

input:

2 2
0.0001

output:

2.0002000200

result:

ok found '2.000200020', expected '2.000200020', error '0.000000000'

Test #57:

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

input:

2 3
0.0001

output:

2.0002000200

result:

ok found '2.000200020', expected '2.000200020', error '0.000000000'

Test #58:

score: 0
Accepted
time: 109ms
memory: 102224kb

input:

100000 60
0.0002

output:

100020.2748383051

result:

ok found '100020.274838305', expected '100020.274838305', error '0.000000000'

Test #59:

score: 0
Accepted
time: 148ms
memory: 133496kb

input:

100000 80
0.0002

output:

100020.0040008003

result:

ok found '100020.004000800', expected '100020.004000800', error '0.000000000'

Test #60:

score: 0
Accepted
time: 167ms
memory: 164860kb

input:

100000 100
0.0002

output:

100020.0040008003

result:

ok found '100020.004000800', expected '100020.004000800', error '0.000000000'

Test #61:

score: 0
Accepted
time: 182ms
memory: 164748kb

input:

100000 120
0.0002

output:

100020.0040008003

result:

ok found '100020.004000800', expected '100020.004000800', error '0.000000000'

Test #62:

score: 0
Accepted
time: 171ms
memory: 164856kb

input:

100000 140
0.0002

output:

100020.0040008003

result:

ok found '100020.004000800', expected '100020.004000800', error '0.000000000'

Test #63:

score: 0
Accepted
time: 178ms
memory: 164660kb

input:

100000 180
0.0002

output:

100020.0040008003

result:

ok found '100020.004000800', expected '100020.004000800', error '0.000000000'

Test #64:

score: 0
Accepted
time: 113ms
memory: 94540kb

input:

100000 55
0.0002

output:

100070.8503282033

result:

ok found '100070.850328203', expected '100070.850328203', error '0.000000000'

Test #65:

score: 0
Accepted
time: 94ms
memory: 86728kb

input:

100000 50
0.0002

output:

103207.6841930914

result:

ok found '103207.684193091', expected '103207.684193091', error '0.000000000'

Extra Test:

score: 0
Extra Test Passed