QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#826257#9778. Brotatoucup-team008#AC ✓364ms145116kbC++173.5kb2024-12-22 04:54:202024-12-22 04:54:20

Judging History

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

  • [2024-12-22 04:54:20]
  • 评测
  • 测评结果:AC
  • 用时:364ms
  • 内存:145116kb
  • [2024-12-22 04:54:20]
  • 提交

answer

#include <algorithm>
#include <array>
#include <bitset>
#include <cassert>
#include <chrono>
#include <cstring>
#include <functional>
#include <iomanip>
#include <iostream>
#include <map>
#include <numeric>
#include <queue>
#include <random>
#include <set>
#include <stack>
#include <vector>

using namespace std;

// BEGIN NO SAD
#define rep(i, a, b) for(int i = a; i < (b); ++i)
#define trav(a, x) for(auto& a : x)
#define all(x) x.begin(), x.end()
#define sz(x) (int)(x).size()
#define mp make_pair
#define pb push_back
#define eb emplace_back
#define lb lower_bound
#define ub upper_bound
typedef vector<int> vi;
#define f first
#define s second
#define derr if(1) cerr

void __print(int x) {cerr << x;}
void __print(long x) {cerr << x;}
void __print(long long x) {cerr << x;}
void __print(unsigned x) {cerr << x;}
void __print(unsigned long x) {cerr << x;}
void __print(unsigned long long x) {cerr << x;}
void __print(float x) {cerr << x;}
void __print(double x) {cerr << x;}
void __print(long double x) {cerr << x;}
void __print(char x) {cerr << '\'' << x << '\'';}
void __print(const char *x) {cerr << '\"' << x << '\"';}
void __print(const string &x) {cerr << '\"' << x << '\"';}
void __print(bool x) {cerr << (x ? "true" : "false");}
 
template<typename T, typename V>
void __print(const pair<T, V> &x) {cerr << '{'; __print(x.first); cerr << ", "; __print(x.second); cerr << '}';}
template<typename T>
void __print(const T &x) {int f = 0; cerr << '{'; for (auto &i: x) cerr << (f++ ? ", " : ""), __print(i); cerr << "}";}
void _print() {cerr << "]\n";}
template <typename T, typename... V>
void _print(T t, V... v) {__print(t); if (sizeof...(v)) cerr << ", "; _print(v...);}
#define debug(x...) cerr << "\e[91m"<<__func__<<":"<<__LINE__<<" [" << #x << "] = ["; _print(x); cerr << "\e[39m" << flush;
// END NO SAD

template<class Fun>
class y_combinator_result {
  Fun fun_;
public:
  template<class T>
  explicit y_combinator_result(T &&fun): fun_(std::forward<T>(fun)) {}

  template<class ...Args>
  decltype(auto) operator()(Args &&...args) {
    return fun_(std::ref(*this), std::forward<Args>(args)...);
  }
};

template<class Fun>
decltype(auto) y_combinator(Fun &&fun) {
  return y_combinator_result<std::decay_t<Fun>>(std::forward<Fun>(fun));
}

template<class T>
bool updmin(T& a, T b) {
  if(b < a) {
    a = b;
    return true;
  }
  return false;
}
template<class T>
bool updmax(T& a, T b) {
  if(b > a) {
    a = b;
    return true;
  }
  return false;
}
typedef int64_t ll;
typedef long double ld;

void solve() {
  int n, k;
  double p;
  cin >> n >> k >> p;
  cout << fixed << setprecision(39);
  if(k >= 200) return void(cout << n/(1-p) << "\n");
  vector<vector<double>> dp(k+1);
  for(auto& x: dp) {
    x.assign(n+1, -1);
    x[n] = 0;
  }
  for(int i = 0; i <= k; i++) {
    for(int j = n-1; j >= 0; j--) {
      dp[i][j] = pow(1/(1-p), j+1) + dp[i][j+1];
      if(i == 0) continue;
      assert(i);
      updmin(dp[i][j], 1 + p * dp[i-1][j] + (1 - p) * dp[i][j+1]);
    }
  }
  cout << dp[k][0] << "\n";
}

// what would chika do
// are there edge cases (N=1?)
// are array sizes proper (scaled by proper constant, for example 2* for koosaga tree)
// integer overflow?
// DS reset properly between test cases
// are you doing geometry in floating points
// are you not using modint when you should

int main() {
  ios_base::sync_with_stdio(false);
  cin.tie(NULL);
  solve();
}

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

详细

Test #1:

score: 100
Accepted
time: 0ms
memory: 4092kb

input:

5 0
0.5

output:

62.000000000000000000000000000000000000000

result:

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

Test #2:

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

input:

5 1
0.5

output:

47.000000000000000000000000000000000000000

result:

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

Test #3:

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

input:

10000 0
0.002

output:

247489700297.997894287109375000000000000000000000000

result:

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

Test #4:

score: 0
Accepted
time: 21ms
memory: 11944kb

input:

100000 10
0.0002

output:

38767507133.098274230957031250000000000000000000000

result:

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

Test #5:

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

input:

100000 0
0.0002

output:

2430683127160.152343750000000000000000000000000000000

result:

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

Test #6:

score: 0
Accepted
time: 35ms
memory: 19964kb

input:

100000 20
0.0002

output:

801073272.229468584060668945312500000000000000000

result:

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

Test #7:

score: 0
Accepted
time: 79ms
memory: 35472kb

input:

100000 40
0.0002

output:

478148.718425809405744075775146484375000000000

result:

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

Test #8:

score: 0
Accepted
time: 8ms
memory: 7124kb

input:

99995 4
0.0001

output:

38976542.867922671139240264892578125000000000000

result:

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

Test #9:

score: 0
Accepted
time: 21ms
memory: 12036kb

input:

99995 10
0.0001

output:

3549184.597693853545933961868286132812500000000

result:

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

Test #10:

score: 0
Accepted
time: 38ms
memory: 16728kb

input:

99995 16
0.0001

output:

399507.470555475214496254920959472656250000000

result:

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

Test #11:

score: 0
Accepted
time: 14ms
memory: 10364kb

input:

99990 8
0.0001

output:

7773463.947887340560555458068847656250000000000

result:

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

Test #12:

score: 0
Accepted
time: 25ms
memory: 12012kb

input:

99990 10
0.0001

output:

3547428.945454183034598827362060546875000000000

result:

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

Test #13:

score: 0
Accepted
time: 25ms
memory: 13432kb

input:

99990 12
0.0001

output:

1647102.020426826551556587219238281250000000000

result:

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

Test #14:

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

input:

16664 1
0.0012

output:

257920044630.817840576171875000000000000000000000000

result:

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

Test #15:

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

input:

16664 21
0.0012

output:

92190688.544408500194549560546875000000000000000

result:

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

Test #16:

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

input:

16664 41
0.0012

output:

59865.091785922639246564358472824096679687500

result:

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

Test #17:

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

input:

16659 5
0.0003

output:

63366.264406926828087307512760162353515625000

result:

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

Test #18:

score: 0
Accepted
time: 5ms
memory: 5300kb

input:

16659 11
0.0003

output:

18120.911863545687083387747406959533691406250

result:

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

Test #19:

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

input:

16659 17
0.0003

output:

16666.555451971995353233069181442260742187500

result:

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

Test #20:

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

input:

16654 9
0.0001

output:

16656.079416577169467927888035774230957031250

result:

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

Test #21:

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

input:

16654 11
0.0001

output:

16655.674122173906653188169002532958984375000

result:

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

Test #22:

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

input:

16654 13
0.0001

output:

16655.665695364306884584948420524597167968750

result:

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

Test #23:

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

input:

2774 2
0.0072

output:

28951389306.989685058593750000000000000000000000000

result:

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

Test #24:

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

input:

2774 22
0.0072

output:

11312241.450654603540897369384765625000000000000

result:

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

Test #25:

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

input:

2774 42
0.0072

output:

8222.415108508928824448958039283752441406250

result:

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

Test #26:

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

input:

2769 6
0.0021

output:

13600.582355733082295046187937259674072265625

result:

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

Test #27:

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

input:

2769 12
0.0021

output:

3239.549978211216057388810440897941589355469

result:

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

Test #28:

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

input:

2769 18
0.0021

output:

2776.628194875278950348729267716407775878906

result:

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

Test #29:

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

input:

2764 10
0.0007

output:

2765.987073954957395471865311264991760253906

result:

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

Test #30:

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

input:

2764 12
0.0007

output:

2765.937362849836063105612993240356445312500

result:

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

Test #31:

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

input:

2764 14
0.0007

output:

2765.936176703346063732169568538665771484375

result:

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

Test #32:

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

input:

100000 1000000000
0.0001

output:

100010.001000100004603154957294464111328125000

result:

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

Test #33:

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

input:

1 1000000000
0.5

output:

2.000000000000000000000000000000000000000

result:

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

Test #34:

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

input:

50 50
0.25

output:

66.734187333704525713073962833732366561890

result:

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

Test #35:

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

input:

40 100
0.5

output:

788.633123966272250982001423835754394531250

result:

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

Test #36:

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

input:

40 160
0.5

output:

80.000000255247925906587624922394752502441

result:

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

Test #37:

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

input:

40 162
0.5

output:

80.000000098233741141484642866998910903931

result:

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

Test #38:

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

input:

40 1000000000
0.5

output:

80.000000000000000000000000000000000000000

result:

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

Test #39:

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

input:

40 0
0.5000

output:

2199023255550.000000000000000000000000000000000000000

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.000000000000000000000000000000000000000

result:

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

Test #41:

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

input:

40 2
0.5000

output:

1236950581248.250000000000000000000000000000000000000

result:

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

Test #42:

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

input:

40 3
0.5000

output:

962072674305.000000000000000000000000000000000000000

result:

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

Test #43:

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

input:

40 4
0.5000

output:

738734374914.218750000000000000000000000000000000000

result:

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

Test #44:

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

input:

40 5
0.5000

output:

575525617666.953125000000000000000000000000000000000

result:

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

Test #45:

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

input:

40 10
0.5000

output:

173409304583.132568359375000000000000000000000000000

result:

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

Test #46:

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

input:

40 15
0.5000

output:

55390502923.073509216308593750000000000000000000000

result:

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

Test #47:

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

input:

40 20
0.5000

output:

18180087821.747406005859375000000000000000000000000

result:

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

Test #48:

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

input:

40 25
0.5000

output:

5963269457.318783760070800781250000000000000000000

result:

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

Test #49:

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

input:

40 30
0.5000

output:

2008652291.209798812866210937500000000000000000000

result:

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

Test #50:

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

input:

40 35
0.5000

output:

676323760.766803979873657226562500000000000000000

result:

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

Test #51:

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

input:

40 40
0.5000

output:

231036317.117801547050476074218750000000000000000

result:

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

Test #52:

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

input:

40 45
0.5000

output:

79224360.245689883828163146972656250000000000000

result:

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

Test #53:

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

input:

40 50
0.5000

output:

27134304.850833605974912643432617187500000000000

result:

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

Test #54:

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

input:

2 1
0.0001

output:

2.000200030004000595340585277881473302841

result:

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

Test #55:

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

input:

2 0
0.0001

output:

2.000300040005000390408440580358728766441

result:

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

Test #56:

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

input:

2 2
0.0001

output:

2.000200020003000567214712646091356873512

result:

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

Test #57:

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

input:

2 3
0.0001

output:

2.000200020002000478314130305079743266106

result:

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

Test #58:

score: 0
Accepted
time: 116ms
memory: 51112kb

input:

100000 60
0.0002

output:

100020.274838415469275787472724914550781250000

result:

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

Test #59:

score: 0
Accepted
time: 164ms
memory: 66924kb

input:

100000 80
0.0002

output:

100020.004000910135800950229167938232421875000

result:

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

Test #60:

score: 0
Accepted
time: 194ms
memory: 82320kb

input:

100000 100
0.0002

output:

100020.004000910135800950229167938232421875000

result:

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

Test #61:

score: 0
Accepted
time: 238ms
memory: 98156kb

input:

100000 120
0.0002

output:

100020.004000910135800950229167938232421875000

result:

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

Test #62:

score: 0
Accepted
time: 275ms
memory: 113736kb

input:

100000 140
0.0002

output:

100020.004000910135800950229167938232421875000

result:

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

Test #63:

score: 0
Accepted
time: 364ms
memory: 145116kb

input:

100000 180
0.0002

output:

100020.004000910135800950229167938232421875000

result:

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

Test #64:

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

input:

100000 55
0.0002

output:

100070.850328312822966836392879486083984375000

result:

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

Test #65:

score: 0
Accepted
time: 98ms
memory: 43408kb

input:

100000 50
0.0002

output:

103207.684193191031226888298988342285156250000

result:

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

Extra Test:

score: 0
Extra Test Passed