QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#825018 | #9778. Brotato | ucup-team4474# | TL | 584ms | 9832kb | C++20 | 4.6kb | 2024-12-21 16:59:15 | 2024-12-21 16:59:20 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
using i64 = long long;
using i128 = __int128_t;
bool Memory_begin;
template <int mod>
unsigned int down(unsigned int x)
{
return x >= mod ? x - mod : x;
}
template <int mod>
struct Modint
{
unsigned int x;
Modint() = default;
Modint(unsigned int x) : x(x) {}
friend istream &operator>>(istream &in, Modint &a) { return in >> a.x; }
friend ostream &operator<<(ostream &out, Modint a) { return out << a.x; }
friend Modint operator+(Modint a, Modint b) { return down<mod>(a.x + b.x); }
friend Modint operator-(Modint a, Modint b) { return down<mod>(a.x - b.x + mod); }
friend Modint operator*(Modint a, Modint b) { return 1ULL * a.x * b.x % mod; }
friend Modint operator/(Modint a, Modint b) { return a * ~b; }
friend Modint operator^(Modint a, i64 b)
{
Modint ans = 1;
for (; b; b >>= 1, a *= a)
if (b & 1)
ans *= a;
return ans;
}
friend Modint operator~(Modint a) { return a ^ (mod - 2); }
friend Modint operator-(Modint a) { return down<mod>(mod - a.x); }
friend Modint &operator+=(Modint &a, Modint b) { return a = a + b; }
friend Modint &operator-=(Modint &a, Modint b) { return a = a - b; }
friend Modint &operator*=(Modint &a, Modint b) { return a = a * b; }
friend Modint &operator/=(Modint &a, Modint b) { return a = a / b; }
friend Modint &operator^=(Modint &a, i64 b) { return a = a ^ b; }
friend Modint &operator++(Modint &a) { return a += 1; }
friend Modint operator++(Modint &a, int)
{
Modint x = a;
a += 1;
return x;
}
friend Modint &operator--(Modint &a) { return a -= 1; }
friend Modint operator--(Modint &a, int)
{
Modint x = a;
a -= 1;
return x;
}
friend bool operator==(Modint a, Modint b) { return a.x == b.x; }
friend bool operator!=(Modint a, Modint b) { return !(a == b); }
};
const int mod = 998244353;
typedef Modint<mod> mint;
__float128 mypow(__float128 x, int y)
{
__float128 ret = 1;
while (y)
{
if (y & 1)
ret *= x;
x *= x;
y >>= 1;
}
return ret;
}
__float128 read()
{
long double ret;
cin >> ret;
return (__float128)ret;
}
void print(__float128 res)
{
long double ret = res;
cout << fixed << setprecision(10) << ret << '\n';
}
bool Memory_end;
signed main()
{
ios_base::sync_with_stdio(false);
cin.tie(nullptr);
cerr << (&Memory_end - &Memory_begin) / 1048576.0 << "MB" << '\n';
int n, k;
cin >> n >> k;
const __float128 e = 1.0;
__float128 p = read();
clock_t cur = clock();
vector<__float128> dp(n + 2), a = dp, b = a;
for (int i = n; i >= 1; i--)
{
a[i] = p, b[i] = e;
a[i] += (e - p) * a[i + 1];
b[i] += (e - p) * b[i + 1];
}
dp[1] = b[1] / (e - a[1]);
for (int i = n; i >= 2; i--)
dp[i] = e + p * dp[1] + (e - p) * dp[i + 1];
int idx = 0;
for (int _ = 1; _ <= 4000 and k; _++, k--)
{
auto tmp = dp;
for (int i = n; i >= 1; i--)
tmp[i] = e + p * dp[i] + (e - p) * tmp[i + 1];
auto cal = [&](int c) -> __float128
{
if (c == n)
return tmp[1];
__float128 d = (e - mypow(e - p, n - c)) / p;
__float128 b = mypow(e - p, n - c) * tmp[n - c + 1] + d;
__float128 a = d * p;
return b / (e - a);
// vector<long double> ret(n + 2);
// for (int i = n; i >= n - c + 1; i--)
// {
// ret[i] = e + p * dp[i] + (e - p) * ret[i + 1];
// a[i] = 0, b[i] = ret[i];
// }
// for (int i = n - c; i >= 1; i--)
// {
// a[i] = p, b[i] = e;
// a[i] += (e - p) * a[i + 1];
// b[i] += (e - p) * b[i + 1];
// }
// ret[1] = b[1] / (e - a[1]);
// for (int i = n - c; i >= 2; i--)
// ret[i] = e + p * ret[1] + (e - p) * ret[i + 1];
// return ret;
};
while (idx < n)
{
auto dp1 = cal(idx), dp2 = cal(idx + 1);
if (dp1 > dp2)
idx++;
else
break;
}
tmp[1] = cal(idx);
for (int i = n - idx; i >= 2; i--)
tmp[i] = e + p * tmp[1] + (e - p) * tmp[i + 1];
dp = move(tmp);
}
print(dp[1]);
}
/*
*/
詳細信息
Test #1:
score: 100
Accepted
time: 1ms
memory: 4020kb
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: 4000kb
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: 2ms
memory: 4052kb
input:
10000 0 0.002
output:
247489700298.2537131310
result:
ok found '247489700298.253723145', expected '247489700298.253692627', error '0.000000000'
Test #4:
score: 0
Accepted
time: 181ms
memory: 9812kb
input:
100000 10 0.0002
output:
38767507133.2322831973
result:
ok found '38767507133.232284546', expected '38767507133.232215881', error '0.000000000'
Test #5:
score: 0
Accepted
time: 11ms
memory: 8160kb
input:
100000 0 0.0002
output:
2430683127170.3809044361
result:
ok found '2430683127170.380859375', expected '2430683127170.376953125', error '0.000000000'
Test #6:
score: 0
Accepted
time: 336ms
memory: 9808kb
input:
100000 20 0.0002
output:
801073272.2316822392
result:
ok found '801073272.231682181', expected '801073272.231680870', error '0.000000000'
Test #7:
score: 0
Accepted
time: 584ms
memory: 9716kb
input:
100000 40 0.0002
output:
478148.7184263074
result:
ok found '478148.718426307', expected '478148.718426307', error '0.000000000'
Test #8:
score: 0
Accepted
time: 109ms
memory: 9768kb
input:
99995 4 0.0001
output:
38976542.8681758680
result:
ok found '38976542.868175872', expected '38976542.868175834', error '0.000000000'
Test #9:
score: 0
Accepted
time: 228ms
memory: 9740kb
input:
99995 10 0.0001
output:
3549184.5977120200
result:
ok found '3549184.597712020', expected '3549184.597712017', error '0.000000000'
Test #10:
score: 0
Accepted
time: 327ms
memory: 9804kb
input:
99995 16 0.0001
output:
399507.4705567422
result:
ok found '399507.470556742', expected '399507.470556742', error '0.000000000'
Test #11:
score: 0
Accepted
time: 191ms
memory: 9832kb
input:
99990 8 0.0001
output:
7773463.9479307275
result:
ok found '7773463.947930727', expected '7773463.947930722', error '0.000000000'
Test #12:
score: 0
Accepted
time: 224ms
memory: 9812kb
input:
99990 10 0.0001
output:
3547428.9454722998
result:
ok found '3547428.945472300', expected '3547428.945472297', error '0.000000000'
Test #13:
score: 0
Accepted
time: 264ms
memory: 9720kb
input:
99990 12 0.0001
output:
1647102.0204343967
result:
ok found '1647102.020434397', expected '1647102.020434395', error '0.000000000'
Test #14:
score: 0
Accepted
time: 3ms
memory: 4464kb
input:
16664 1 0.0012
output:
257920044630.8605322987
result:
ok found '257920044630.860534668', expected '257920044630.860534668', error '0.000000000'
Test #15:
score: 0
Accepted
time: 51ms
memory: 4516kb
input:
16664 21 0.0012
output:
92190688.5444150149
result:
ok found '92190688.544415012', expected '92190688.544415027', error '0.000000000'
Test #16:
score: 0
Accepted
time: 95ms
memory: 4408kb
input:
16664 41 0.0012
output:
59865.0917859199
result:
ok found '59865.091785920', expected '59865.091785920', error '0.000000000'
Test #17:
score: 0
Accepted
time: 26ms
memory: 4552kb
input:
16659 5 0.0003
output:
63366.2644069548
result:
ok found '63366.264406955', expected '63366.264406955', error '0.000000000'
Test #18:
score: 0
Accepted
time: 48ms
memory: 4532kb
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: 57ms
memory: 4460kb
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: 46ms
memory: 4544kb
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: 47ms
memory: 4488kb
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: 45ms
memory: 4568kb
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: 2ms
memory: 4044kb
input:
2774 2 0.0072
output:
28951389306.9875126909
result:
ok found '28951389306.987514496', expected '28951389306.987514496', error '0.000000000'
Test #24:
score: 0
Accepted
time: 6ms
memory: 4096kb
input:
2774 22 0.0072
output:
11312241.4506539417
result:
ok found '11312241.450653942', expected '11312241.450653942', error '0.000000000'
Test #25:
score: 0
Accepted
time: 16ms
memory: 4016kb
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: 5ms
memory: 4224kb
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: 8ms
memory: 4036kb
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: 9ms
memory: 4052kb
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: 7ms
memory: 4148kb
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: 4ms
memory: 4116kb
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: 8ms
memory: 4236kb
input:
2764 14 0.0007
output:
2765.9361767035
result:
ok found '2765.936176704', expected '2765.936176704', error '0.000000000'
Test #32:
score: -100
Time Limit Exceeded
input:
100000 1000000000 0.0001