QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#880887 | #9778. Brotato | ucup-team3702 | WA | 52ms | 83052kb | C++14 | 852b | 2025-02-03 22:39:03 | 2025-02-03 22:39:03 |
Judging History
answer
#include <cstdio>
#define rep(i, d, u) for(int i = d; i <= u; ++i)
#define dep(i, u, d) for(int i = u; i >= d; --i)
const int _maxn = 100011, _maxm = 111;
int n, m, atpo;
double p, ppow[_maxn], pref[_maxn], dpot[_maxm][_maxn];
int main() {
scanf("%d%d%lf", &n, &m, &p), ppow[0] = 1;
if(m > 100) {
m = 100;
}
rep(i, 1, n) {
pref[i] = pref[i - 1] + (ppow[i] = ppow[i - 1] / (1 - p));
}
dep(i, n, 1) {
dpot[0][i] = dpot[0][i + 1] + ppow[i];
}
rep(i, 1, m) {
dep(j, n, 1) {
if(dpot[i][j + 1] + pref[j] < dpot[i - 1][j]) {
atpo = j;
break;
}
dpot[i][j] = (1 - p) * dpot[i][j + 1] + p * dpot[i - 1][j] + 1;
}
dpot[i][1] = dpot[i][atpo + 1] + pref[atpo];
dep(j, atpo, 1) {
dpot[i][j] = (1 - p) * dpot[i][j + 1] + p * dpot[i][1] + 1;
}
}
printf("%.10lf\n", dpot[m][1]);
return 0;
}
詳細信息
Test #1:
score: 100
Accepted
time: 0ms
memory: 3812kb
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: 0ms
memory: 3816kb
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: 1920kb
input:
10000 0 0.002
output:
247489700298.2595520020
result:
ok found '247489700298.259552002', expected '247489700298.253692627', error '0.000000000'
Test #4:
score: 0
Accepted
time: 7ms
memory: 12904kb
input:
100000 10 0.0002
output:
38767507133.1830291748
result:
ok found '38767507133.183029175', expected '38767507133.232215881', error '0.000000000'
Test #5:
score: 0
Accepted
time: 0ms
memory: 4096kb
input:
100000 0 0.0002
output:
2430683127165.2084960938
result:
ok found '2430683127165.208496094', expected '2430683127170.376953125', error '0.000000000'
Test #6:
score: 0
Accepted
time: 8ms
memory: 19712kb
input:
100000 20 0.0002
output:
801073272.2307126522
result:
ok found '801073272.230712652', expected '801073272.231680870', error '0.000000000'
Test #7:
score: 0
Accepted
time: 19ms
memory: 36072kb
input:
100000 40 0.0002
output:
478148.7184262861
result:
ok found '478148.718426286', expected '478148.718426307', error '0.000000000'
Test #8:
score: 0
Accepted
time: 2ms
memory: 7168kb
input:
99995 4 0.0001
output:
38976542.8681712896
result:
ok found '38976542.868171290', expected '38976542.868175834', error '0.000000000'
Test #9:
score: 0
Accepted
time: 4ms
memory: 11776kb
input:
99995 10 0.0001
output:
3549184.5977123757
result:
ok found '3549184.597712376', expected '3549184.597712017', error '0.000000000'
Test #10:
score: 0
Accepted
time: 5ms
memory: 17512kb
input:
99995 16 0.0001
output:
399507.4705564815
result:
ok found '399507.470556482', expected '399507.470556742', error '0.000000000'
Test #11:
score: 0
Accepted
time: 3ms
memory: 10240kb
input:
99990 8 0.0001
output:
7773463.9479228426
result:
ok found '7773463.947922843', expected '7773463.947930722', error '0.000000000'
Test #12:
score: 0
Accepted
time: 2ms
memory: 12776kb
input:
99990 10 0.0001
output:
3547428.9454709762
result:
ok found '3547428.945470976', expected '3547428.945472297', error '0.000000000'
Test #13:
score: 0
Accepted
time: 8ms
memory: 13440kb
input:
99990 12 0.0001
output:
1647102.0204342664
result:
ok found '1647102.020434266', expected '1647102.020434395', error '0.000000000'
Test #14:
score: 0
Accepted
time: 0ms
memory: 2176kb
input:
16664 1 0.0012
output:
257920044630.7927551270
result:
ok found '257920044630.792755127', expected '257920044630.860534668', error '0.000000000'
Test #15:
score: 0
Accepted
time: 1ms
memory: 6632kb
input:
16664 21 0.0012
output:
92190688.5444017500
result:
ok found '92190688.544401750', expected '92190688.544415027', error '0.000000000'
Test #16:
score: 0
Accepted
time: 4ms
memory: 7552kb
input:
16664 41 0.0012
output:
59865.0917859182
result:
ok found '59865.091785918', expected '59865.091785920', error '0.000000000'
Test #17:
score: 0
Accepted
time: 1ms
memory: 2816kb
input:
16659 5 0.0003
output:
63366.2644069476
result:
ok found '63366.264406948', expected '63366.264406955', error '0.000000000'
Test #18:
score: 0
Accepted
time: 0ms
memory: 3456kb
input:
16659 11 0.0003
output:
18120.9118635489
result:
ok found '18120.911863549', expected '18120.911863543', error '0.000000000'
Test #19:
score: 0
Accepted
time: 1ms
memory: 4352kb
input:
16659 17 0.0003
output:
16666.5554519720
result:
ok found '16666.555451972', expected '16666.555451967', error '0.000000000'
Test #20:
score: 0
Accepted
time: 1ms
memory: 3328kb
input:
16654 9 0.0001
output:
16656.0794165772
result:
ok found '16656.079416577', expected '16656.079416576', error '0.000000000'
Test #21:
score: 0
Accepted
time: 0ms
memory: 5356kb
input:
16654 11 0.0001
output:
16655.6741221739
result:
ok found '16655.674122174', expected '16655.674122172', error '0.000000000'
Test #22:
score: 0
Accepted
time: 0ms
memory: 5608kb
input:
16654 13 0.0001
output:
16655.6656953643
result:
ok found '16655.665695364', expected '16655.665695363', error '0.000000000'
Test #23:
score: 0
Accepted
time: 0ms
memory: 1792kb
input:
2774 2 0.0072
output:
28951389306.9861297607
result:
ok found '28951389306.986129761', expected '28951389306.987514496', error '0.000000000'
Test #24:
score: 0
Accepted
time: 0ms
memory: 2304kb
input:
2774 22 0.0072
output:
11312241.4506537411
result:
ok found '11312241.450653741', expected '11312241.450653942', error '0.000000000'
Test #25:
score: 0
Accepted
time: 0ms
memory: 4840kb
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: 0ms
memory: 3944kb
input:
2769 6 0.0021
output:
13600.5823557312
result:
ok found '13600.582355731', expected '13600.582355732', error '0.000000000'
Test #27:
score: 0
Accepted
time: 0ms
memory: 2048kb
input:
2769 12 0.0021
output:
3239.5499782112
result:
ok found '3239.549978211', expected '3239.549978211', error '0.000000000'
Test #28:
score: 0
Accepted
time: 0ms
memory: 4200kb
input:
2769 18 0.0021
output:
2776.6281948753
result:
ok found '2776.628194875', expected '2776.628194875', error '0.000000000'
Test #29:
score: 0
Accepted
time: 0ms
memory: 4072kb
input:
2764 10 0.0007
output:
2765.9870739550
result:
ok found '2765.987073955', expected '2765.987073955', error '0.000000000'
Test #30:
score: 0
Accepted
time: 0ms
memory: 4072kb
input:
2764 12 0.0007
output:
2765.9373628498
result:
ok found '2765.937362850', expected '2765.937362850', error '0.000000000'
Test #31:
score: 0
Accepted
time: 0ms
memory: 4072kb
input:
2764 14 0.0007
output:
2765.9361767033
result:
ok found '2765.936176703', expected '2765.936176704', error '0.000000000'
Test #32:
score: 0
Accepted
time: 52ms
memory: 83052kb
input:
100000 1000000000 0.0001
output:
100010.0010001554
result:
ok found '100010.001000155', expected '100010.001000100', error '0.000000000'
Test #33:
score: 0
Accepted
time: 0ms
memory: 2176kb
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: 1920kb
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: 2176kb
input:
40 100 0.5
output:
788.6331239663
result:
ok found '788.633123966', expected '788.633123966', error '0.000000000'
Test #36:
score: -100
Wrong Answer
time: 0ms
memory: 2048kb
input:
40 160 0.5
output:
788.6331239663
result:
wrong answer 1st numbers differ - expected: '80.0000003', found: '788.6331240', error = '8.8579140'