QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#829355 | #9778. Brotato | ucup-team5243 | AC ✓ | 91ms | 6112kb | C++17 | 1.4kb | 2024-12-24 09:24:17 | 2024-12-24 09:24:18 |
Judging History
answer
#ifdef NACHIA
#define _GLIBCXX_DEBUG
#else
#define NDEBUG
#endif
#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
using i64 = long long;
using u64 = unsigned long long;
#define rep(i,n) for(int i=0; i<int(n); i++)
const i64 INF = 1001001001001001001;
template<typename A> void chmin(A& l, const A& r){ if(r < l) l = r; }
template<typename A> void chmax(A& l, const A& r){ if(l < r) l = r; }
using namespace std;
#include <cmath>
void testcase(){
i64 n, k; cin >> n >> k;
double p; cin >> p;
cout.precision(20);
cout << fixed;
if(k >= 1000 || n*k >= 100000000){
double a = n / (1 - p);
cout << a << "\n";
return;
}
vector<double> Q(n+1);
for(int f=0; f<=n; f++) Q[f] = (1 - pow(1-p,f+1)) / p / pow(1-p,f) - 1;
double ansK0 = Q[n];
double q = 1.0 - p;
vector<double> dp(n+1);
for(int i=n-1; i>=0; i--) dp[i] = dp[i+1] * q + ansK0 * p + 1.0;
//for(auto a : Q) cout << a << endl;
//cout << endl;
for(int a=1; a<=k; a++){
vector<double> nx(n+1);
for(int i=n-1; i>=0; i--){
double val1 = q * nx[i+1] + p * dp[i] + 1.0;
double val2 = nx[i+1] + p * Q[i+1] + 1.0;
nx[i] = min(val1, val2);
}
swap(dp, nx);
}
cout << dp[0] << "\n";
}
int main(){
ios::sync_with_stdio(false); cin.tie(nullptr);
testcase();
return 0;
}
这程序好像有点Bug,我给组数据试试?
详细
Test #1:
score: 100
Accepted
time: 0ms
memory: 4052kb
input:
5 0 0.5
output:
62.00000000000000000000
result:
ok found '62.000000000', expected '62.000000000', error '0.000000000'
Test #2:
score: 0
Accepted
time: 0ms
memory: 4164kb
input:
5 1 0.5
output:
47.00000000000000000000
result:
ok found '47.000000000', expected '47.000000000', error '0.000000000'
Test #3:
score: 0
Accepted
time: 1ms
memory: 4200kb
input:
10000 0 0.002
output:
247489700298.26330566406250000000
result:
ok found '247489700298.263305664', expected '247489700298.253692627', error '0.000000000'
Test #4:
score: 0
Accepted
time: 10ms
memory: 6072kb
input:
100000 10 0.0002
output:
38767507133.16877746582031250000
result:
ok found '38767507133.168777466', expected '38767507133.232215881', error '0.000000000'
Test #5:
score: 0
Accepted
time: 4ms
memory: 4972kb
input:
100000 0 0.0002
output:
2430683127165.79687500000000000000
result:
ok found '2430683127165.796875000', expected '2430683127170.376953125', error '0.000000000'
Test #6:
score: 0
Accepted
time: 14ms
memory: 6108kb
input:
100000 20 0.0002
output:
801073272.23070108890533447266
result:
ok found '801073272.230701089', expected '801073272.231680870', error '0.000000000'
Test #7:
score: 0
Accepted
time: 24ms
memory: 6080kb
input:
100000 40 0.0002
output:
478148.71842622011899948120
result:
ok found '478148.718426220', expected '478148.718426307', error '0.000000000'
Test #8:
score: 0
Accepted
time: 3ms
memory: 6004kb
input:
99995 4 0.0001
output:
38976542.86814381182193756104
result:
ok found '38976542.868143812', expected '38976542.868175834', error '0.000000000'
Test #9:
score: 0
Accepted
time: 10ms
memory: 5832kb
input:
99995 10 0.0001
output:
3549184.59771009301766753197
result:
ok found '3549184.597710093', expected '3549184.597712017', error '0.000000000'
Test #10:
score: 0
Accepted
time: 13ms
memory: 6092kb
input:
99995 16 0.0001
output:
399507.47055667114909738302
result:
ok found '399507.470556671', expected '399507.470556742', error '0.000000000'
Test #11:
score: 0
Accepted
time: 9ms
memory: 5880kb
input:
99990 8 0.0001
output:
7773463.94792551174759864807
result:
ok found '7773463.947925512', expected '7773463.947930722', error '0.000000000'
Test #12:
score: 0
Accepted
time: 10ms
memory: 5876kb
input:
99990 10 0.0001
output:
3547428.94547025859355926514
result:
ok found '3547428.945470259', expected '3547428.945472297', error '0.000000000'
Test #13:
score: 0
Accepted
time: 11ms
memory: 6088kb
input:
99990 12 0.0001
output:
1647102.02043358655646443367
result:
ok found '1647102.020433587', expected '1647102.020434395', error '0.000000000'
Test #14:
score: 0
Accepted
time: 1ms
memory: 4164kb
input:
16664 1 0.0012
output:
257920044630.77719116210937500000
result:
ok found '257920044630.777191162', expected '257920044630.860534668', error '0.000000000'
Test #15:
score: 0
Accepted
time: 3ms
memory: 4212kb
input:
16664 21 0.0012
output:
92190688.54439744353294372559
result:
ok found '92190688.544397444', expected '92190688.544415027', error '0.000000000'
Test #16:
score: 0
Accepted
time: 4ms
memory: 4216kb
input:
16664 41 0.0012
output:
59865.09178591903037158772
result:
ok found '59865.091785919', expected '59865.091785920', error '0.000000000'
Test #17:
score: 0
Accepted
time: 2ms
memory: 4156kb
input:
16659 5 0.0003
output:
63366.26440694308985257521
result:
ok found '63366.264406943', expected '63366.264406955', error '0.000000000'
Test #18:
score: 0
Accepted
time: 0ms
memory: 4256kb
input:
16659 11 0.0003
output:
18120.91186354630917776376
result:
ok found '18120.911863546', expected '18120.911863543', error '0.000000000'
Test #19:
score: 0
Accepted
time: 3ms
memory: 4156kb
input:
16659 17 0.0003
output:
16666.55545197199535323307
result:
ok found '16666.555451972', expected '16666.555451967', error '0.000000000'
Test #20:
score: 0
Accepted
time: 0ms
memory: 4200kb
input:
16654 9 0.0001
output:
16656.07941657716946792789
result:
ok found '16656.079416577', expected '16656.079416576', error '0.000000000'
Test #21:
score: 0
Accepted
time: 2ms
memory: 4156kb
input:
16654 11 0.0001
output:
16655.67412217391029116698
result:
ok found '16655.674122174', expected '16655.674122172', error '0.000000000'
Test #22:
score: 0
Accepted
time: 2ms
memory: 4312kb
input:
16654 13 0.0001
output:
16655.66569536430688458495
result:
ok found '16655.665695364', expected '16655.665695363', error '0.000000000'
Test #23:
score: 0
Accepted
time: 1ms
memory: 4092kb
input:
2774 2 0.0072
output:
28951389306.98641586303710937500
result:
ok found '28951389306.986415863', expected '28951389306.987514496', error '0.000000000'
Test #24:
score: 0
Accepted
time: 1ms
memory: 4164kb
input:
2774 22 0.0072
output:
11312241.45065364986658096313
result:
ok found '11312241.450653650', expected '11312241.450653942', error '0.000000000'
Test #25:
score: 0
Accepted
time: 1ms
memory: 4144kb
input:
2774 42 0.0072
output:
8222.41510850860868231393
result:
ok found '8222.415108509', expected '8222.415108509', error '0.000000000'
Test #26:
score: 0
Accepted
time: 1ms
memory: 4192kb
input:
2769 6 0.0021
output:
13600.58235573147248942405
result:
ok found '13600.582355731', expected '13600.582355732', error '0.000000000'
Test #27:
score: 0
Accepted
time: 1ms
memory: 4180kb
input:
2769 12 0.0021
output:
3239.54997821115193801234
result:
ok found '3239.549978211', expected '3239.549978211', error '0.000000000'
Test #28:
score: 0
Accepted
time: 1ms
memory: 4136kb
input:
2769 18 0.0021
output:
2776.62819487527895034873
result:
ok found '2776.628194875', expected '2776.628194875', error '0.000000000'
Test #29:
score: 0
Accepted
time: 1ms
memory: 4176kb
input:
2764 10 0.0007
output:
2765.98707395495739547187
result:
ok found '2765.987073955', expected '2765.987073955', error '0.000000000'
Test #30:
score: 0
Accepted
time: 1ms
memory: 4140kb
input:
2764 12 0.0007
output:
2765.93736284983742734767
result:
ok found '2765.937362850', expected '2765.937362850', error '0.000000000'
Test #31:
score: 0
Accepted
time: 1ms
memory: 4128kb
input:
2764 14 0.0007
output:
2765.93617670334606373217
result:
ok found '2765.936176703', expected '2765.936176704', error '0.000000000'
Test #32:
score: 0
Accepted
time: 0ms
memory: 3800kb
input:
100000 1000000000 0.0001
output:
100010.00100010000460315496
result:
ok found '100010.001000100', expected '100010.001000100', error '0.000000000'
Test #33:
score: 0
Accepted
time: 0ms
memory: 3860kb
input:
1 1000000000 0.5
output:
2.00000000000000000000
result:
ok found '2.000000000', expected '2.000000000', error '0.000000000'
Test #34:
score: 0
Accepted
time: 0ms
memory: 4096kb
input:
50 50 0.25
output:
66.73418733370452571307
result:
ok found '66.734187334', expected '66.734187334', error '0.000000000'
Test #35:
score: 0
Accepted
time: 0ms
memory: 4092kb
input:
40 100 0.5
output:
788.63312396627225098200
result:
ok found '788.633123966', expected '788.633123966', error '0.000000000'
Test #36:
score: 0
Accepted
time: 0ms
memory: 4084kb
input:
40 160 0.5
output:
80.00000025524792590659
result:
ok found '80.000000255', expected '80.000000255', error '0.000000000'
Test #37:
score: 0
Accepted
time: 0ms
memory: 4032kb
input:
40 162 0.5
output:
80.00000009823374114148
result:
ok found '80.000000098', expected '80.000000098', error '0.000000000'
Test #38:
score: 0
Accepted
time: 0ms
memory: 3836kb
input:
40 1000000000 0.5
output:
80.00000000000000000000
result:
ok found '80.000000000', expected '80.000000000', error '0.000000000'
Test #39:
score: 0
Accepted
time: 0ms
memory: 4088kb
input:
40 0 0.5000
output:
2199023255550.00000000000000000000
result:
ok found '2199023255550.000000000', expected '2199023255550.000000000', error '0.000000000'
Test #40:
score: 0
Accepted
time: 0ms
memory: 4164kb
input:
40 1 0.5000
output:
1649267441663.00000000000000000000
result:
ok found '1649267441663.000000000', expected '1649267441663.000000000', error '0.000000000'
Test #41:
score: 0
Accepted
time: 0ms
memory: 4092kb
input:
40 2 0.5000
output:
1236950581248.25000000000000000000
result:
ok found '1236950581248.250000000', expected '1236950581248.250000000', error '0.000000000'
Test #42:
score: 0
Accepted
time: 0ms
memory: 4164kb
input:
40 3 0.5000
output:
962072674305.00000000000000000000
result:
ok found '962072674305.000000000', expected '962072674305.000000000', error '0.000000000'
Test #43:
score: 0
Accepted
time: 0ms
memory: 4080kb
input:
40 4 0.5000
output:
738734374914.21875000000000000000
result:
ok found '738734374914.218750000', expected '738734374914.218750000', error '0.000000000'
Test #44:
score: 0
Accepted
time: 0ms
memory: 4068kb
input:
40 5 0.5000
output:
575525617666.95312500000000000000
result:
ok found '575525617666.953125000', expected '575525617666.953125000', error '0.000000000'
Test #45:
score: 0
Accepted
time: 0ms
memory: 4112kb
input:
40 10 0.5000
output:
173409304583.13256835937500000000
result:
ok found '173409304583.132568359', expected '173409304583.132568359', error '0.000000000'
Test #46:
score: 0
Accepted
time: 0ms
memory: 4124kb
input:
40 15 0.5000
output:
55390502923.07350921630859375000
result:
ok found '55390502923.073509216', expected '55390502923.073509216', error '0.000000000'
Test #47:
score: 0
Accepted
time: 0ms
memory: 4068kb
input:
40 20 0.5000
output:
18180087821.74740600585937500000
result:
ok found '18180087821.747406006', expected '18180087821.747406006', error '0.000000000'
Test #48:
score: 0
Accepted
time: 0ms
memory: 4124kb
input:
40 25 0.5000
output:
5963269457.31878376007080078125
result:
ok found '5963269457.318783760', expected '5963269457.318783760', error '0.000000000'
Test #49:
score: 0
Accepted
time: 0ms
memory: 4092kb
input:
40 30 0.5000
output:
2008652291.20979881286621093750
result:
ok found '2008652291.209798813', expected '2008652291.209799051', error '0.000000000'
Test #50:
score: 0
Accepted
time: 0ms
memory: 4080kb
input:
40 35 0.5000
output:
676323760.76680397987365722656
result:
ok found '676323760.766803980', expected '676323760.766804099', error '0.000000000'
Test #51:
score: 0
Accepted
time: 0ms
memory: 4164kb
input:
40 40 0.5000
output:
231036317.11780154705047607422
result:
ok found '231036317.117801547', expected '231036317.117801577', error '0.000000000'
Test #52:
score: 0
Accepted
time: 0ms
memory: 4096kb
input:
40 45 0.5000
output:
79224360.24568988382816314697
result:
ok found '79224360.245689884', expected '79224360.245689899', error '0.000000000'
Test #53:
score: 0
Accepted
time: 0ms
memory: 4012kb
input:
40 50 0.5000
output:
27134304.85083360597491264343
result:
ok found '27134304.850833606', expected '27134304.850833610', error '0.000000000'
Test #54:
score: 0
Accepted
time: 0ms
memory: 4088kb
input:
2 1 0.0001
output:
2.00020003000400059534
result:
ok found '2.000200030', expected '2.000200030', error '0.000000000'
Test #55:
score: 0
Accepted
time: 0ms
memory: 4072kb
input:
2 0 0.0001
output:
2.00030004000500083450
result:
ok found '2.000300040', expected '2.000300040', error '0.000000000'
Test #56:
score: 0
Accepted
time: 0ms
memory: 4124kb
input:
2 2 0.0001
output:
2.00020002000300056721
result:
ok found '2.000200020', expected '2.000200020', error '0.000000000'
Test #57:
score: 0
Accepted
time: 0ms
memory: 4164kb
input:
2 3 0.0001
output:
2.00020002000200047831
result:
ok found '2.000200020', expected '2.000200020', error '0.000000000'
Test #58:
score: 0
Accepted
time: 30ms
memory: 5912kb
input:
100000 60 0.0002
output:
100020.27483841546927578747
result:
ok found '100020.274838415', expected '100020.274838305', error '0.000000000'
Test #59:
score: 0
Accepted
time: 43ms
memory: 6112kb
input:
100000 80 0.0002
output:
100020.00400091013580095023
result:
ok found '100020.004000910', expected '100020.004000800', error '0.000000000'
Test #60:
score: 0
Accepted
time: 49ms
memory: 6036kb
input:
100000 100 0.0002
output:
100020.00400091013580095023
result:
ok found '100020.004000910', expected '100020.004000800', error '0.000000000'
Test #61:
score: 0
Accepted
time: 59ms
memory: 6092kb
input:
100000 120 0.0002
output:
100020.00400091013580095023
result:
ok found '100020.004000910', expected '100020.004000800', error '0.000000000'
Test #62:
score: 0
Accepted
time: 68ms
memory: 6104kb
input:
100000 140 0.0002
output:
100020.00400091013580095023
result:
ok found '100020.004000910', expected '100020.004000800', error '0.000000000'
Test #63:
score: 0
Accepted
time: 91ms
memory: 5880kb
input:
100000 180 0.0002
output:
100020.00400091013580095023
result:
ok found '100020.004000910', expected '100020.004000800', error '0.000000000'
Test #64:
score: 0
Accepted
time: 31ms
memory: 5888kb
input:
100000 55 0.0002
output:
100070.85032831293938215822
result:
ok found '100070.850328313', expected '100070.850328203', error '0.000000000'
Test #65:
score: 0
Accepted
time: 29ms
memory: 6032kb
input:
100000 50 0.0002
output:
103207.68419319581880699843
result:
ok found '103207.684193196', expected '103207.684193091', error '0.000000000'
Extra Test:
score: 0
Extra Test Passed