QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#293871 | #3994. Easy Jump | rageOfThunder | WA | 14ms | 5672kb | C++14 | 2.7kb | 2023-12-29 21:23:25 | 2023-12-29 21:23:26 |
Judging History
answer
// MagicDark
#include <bits/stdc++.h>
#define debug cerr << "[" << __LINE__ << "] "
#define SZ(x) (int) x.size() - 1
#define all(x) x.begin(), x.end()
#define ms(x, y) memset(x, y, sizeof x)
#define F(i, x, y) for (int i = (x); i <= (y); i++)
#define DF(i, x, y) for (int i = (x); i >= (y); i--)
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
template <typename T> inline void chkmax(T& x, T y) {x = max(x, y);}
template <typename T> inline void chkmin(T& x, T y) {x = min(x, y);}
template <typename T> inline void read(T &x) {
x = 0; int f = 1; char c = getchar();
for (; !isdigit(c); c = getchar()) if (c == '-') f = -f;
for (; isdigit(c); c = getchar()) x = (x << 1) + (x << 3) + (c ^ 48);
x *= f;
}
int n, h, s;
double p[1010], f[1010][15][15], g[15];
int t1, t2;
bool t[1010];
double merge(double x, double y) {
return (x < 0) ? y : (y < 0 ? x : min(x, y));
}
signed main() {
cin.tie(0) -> sync_with_stdio(0); // don't use puts
cin >> n >> h >> s;
F(i, 1, n) {
cin >> p[i];
p[i] /= 100;
}
{
int t; cin >> t;
while (t--) {
int x; cin >> x;
::t[x] = true;
}
}
cin >> t1 >> t2;
DF(i, n, 1) {
if (t[i]) {
F(a, 1, h) g[a] = -1;
F(_, 1, 1000) {
F(a, 1, h) {
if (a > 1) {// 操作 1
double A = f[i + 1][a][s];
if (A >= 0) {
A = (p[i] * A + (1 - p[i]) * t2 + 1) / p[i];
double B = -1;
if (g[a - 1] >= 0) B = 1 + p[i] * f[i + 1][a][s] + (1 - p[i]) * g[a - 1];
g[a] = merge(g[a], merge(A, B));
}
}
}
DF(a, h - 1, 1)
if (g[a + 1] >= 0) g[a] = merge(g[a], g[a + 1] + t1);
}
F(j, 1, h + s)
DF(a, h, 1) {
int b = j - a;
if (b < 0 || b > s) continue;
f[i][a][b] = g[a];
}
// F(a, 1, h) cout << g[a] << " "; cout << endl;
} else {
F(j, 1, h + s)
DF(a, h, 1) {
int b = j - a;
if (b < 0 || b > s) continue;
f[i][a][b] = -1;
if (a > 1) {// 操作 1
double A = f[i + 1][a][b];
if (A >= 0) {
A = (p[i] * A + (1 - p[i]) * t2 + 1) / p[i];
double B = -1;
if (f[i][a - 1][b] >= 0) B = 1 + p[i] * f[i + 1][a][b] + (1 - p[i]) * f[i][a - 1][b];
f[i][a][b] = merge(f[i][a][b], merge(A, B));
}
}
// 操作 2
if (a < h && b && f[i][a + 1][b - 1] >= 0) f[i][a][b] = merge(f[i][a][b], f[i][a + 1][b - 1] + t1);//, debug << f[i][a + 1][b - 1] << endl;
}
}
// debug << i << endl;
F(a, 1, h)
F(b, 0, s) {
if (f[i][a][b] < 0) assert(f[i][a][b] == -1);
}
// cout << f[i][a][b] << " \n"[b == s];
// cout << endl;
}
cout << fixed << setprecision(10) << f[1][h][s];
return 0;
}
/* why?
*/
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 1ms
memory: 3832kb
input:
1 2 0 50 0 1 2
output:
4.0000000000
result:
ok found '4.0000000', expected '4.0000000', error '0.0000000'
Test #2:
score: 0
Accepted
time: 1ms
memory: 3836kb
input:
2 3 1 50 50 1 1 1 3
output:
6.0000000000
result:
ok found '6.0000000', expected '6.0000000', error '0.0000000'
Test #3:
score: 0
Accepted
time: 1ms
memory: 3684kb
input:
1 6 4 75 0 64 6
output:
1.3411458333
result:
ok found '1.3411458', expected '1.3411458', error '0.0000000'
Test #4:
score: 0
Accepted
time: 0ms
memory: 3844kb
input:
1 5 1 61 1 1 15 43
output:
2.2082231967
result:
ok found '2.2082232', expected '2.2082232', error '0.0000000'
Test #5:
score: 0
Accepted
time: 0ms
memory: 3840kb
input:
10 9 3 12 65 76 33 17 20 89 16 4 63 3 2 4 8 73 21
output:
942.4148420128
result:
ok found '942.4148420', expected '942.4148420', error '0.0000000'
Test #6:
score: 0
Accepted
time: 0ms
memory: 3800kb
input:
10 6 0 26 6 29 76 92 46 8 4 91 44 1 4 17 6
output:
401.8668629820
result:
ok found '401.8668630', expected '401.8668630', error '0.0000000'
Test #7:
score: 0
Accepted
time: 1ms
memory: 3948kb
input:
100 3 5 85 59 20 75 58 42 79 95 22 15 95 81 69 73 45 42 99 93 58 8 18 34 88 14 23 37 87 16 96 17 40 58 32 26 93 9 37 15 68 49 99 73 48 79 16 27 52 4 66 53 48 55 27 56 52 66 25 30 34 11 97 20 38 30 4 78 17 98 4 23 30 71 87 94 89 71 45 92 72 24 90 24 78 48 62 82 30 30 27 55 64 66 41 72 53 97 59 38 80 ...
output:
13395.8550625145
result:
ok found '13395.8550625', expected '13395.8550625', error '0.0000000'
Test #8:
score: 0
Accepted
time: 2ms
memory: 4036kb
input:
100 6 5 71 18 59 37 83 16 53 4 42 38 52 89 95 42 39 17 27 84 53 45 36 50 7 63 23 69 34 74 68 13 65 81 48 77 36 87 57 22 47 70 50 54 16 63 32 96 70 30 25 97 35 33 59 76 40 54 68 60 19 34 73 8 71 77 97 39 27 37 93 19 71 94 61 33 28 80 86 79 16 2 42 89 19 43 97 52 95 69 53 67 37 51 4 53 7 36 82 67 80 2...
output:
15012.9833031761
result:
ok found '15012.9833032', expected '15012.9833032', error '0.0000000'
Test #9:
score: 0
Accepted
time: 2ms
memory: 4000kb
input:
100 4 1 15 95 82 67 93 57 92 60 48 53 26 94 10 24 88 48 48 28 9 62 55 6 8 39 25 87 14 10 50 19 24 89 11 98 3 30 16 22 43 80 26 49 47 59 38 70 79 94 2 72 78 28 83 34 30 52 45 83 9 42 63 46 83 95 49 21 38 48 87 65 45 7 91 9 5 32 57 21 39 34 71 69 87 44 12 38 72 99 55 23 21 42 87 91 85 93 47 28 25 96 8...
output:
22457.8011509807
result:
ok found '22457.8011510', expected '22457.8011510', error '0.0000000'
Test #10:
score: 0
Accepted
time: 1ms
memory: 4004kb
input:
100 6 4 52 32 81 87 70 91 23 65 91 47 84 60 76 18 31 34 17 85 31 68 80 35 60 86 63 42 76 94 90 25 76 1 38 87 68 19 43 66 7 12 82 7 58 93 66 3 92 92 64 82 10 91 55 27 41 45 44 59 91 30 86 69 77 36 76 49 46 91 14 14 58 51 4 91 23 56 72 86 65 78 91 21 80 77 75 13 36 99 34 61 56 79 5 32 49 37 26 93 70 5...
output:
4276.8043968671
result:
ok found '4276.8043969', expected '4276.8043969', error '0.0000000'
Test #11:
score: 0
Accepted
time: 1ms
memory: 4084kb
input:
100 3 5 18 54 94 38 94 89 65 11 6 7 20 36 99 17 55 98 14 74 78 32 95 67 20 21 24 67 50 96 72 42 22 32 14 82 44 81 37 94 11 22 86 33 41 36 9 41 90 66 27 13 7 93 89 84 1 4 1 75 33 92 55 11 19 71 40 45 40 9 32 81 98 58 70 23 30 49 24 98 15 41 35 51 3 6 83 54 14 28 81 64 71 86 33 45 51 61 14 18 19 12 10...
output:
31638.9764386716
result:
ok found '31638.9764387', expected '31638.9764387', error '0.0000000'
Test #12:
score: 0
Accepted
time: 14ms
memory: 5592kb
input:
1000 8 3 67 7 89 71 35 18 39 60 12 76 58 9 78 97 89 71 55 25 3 12 36 52 55 20 51 25 25 1 30 49 23 63 54 52 17 81 89 64 47 92 20 98 96 12 53 21 85 75 55 5 25 20 63 43 28 65 11 97 42 64 23 91 40 87 61 98 36 48 24 40 6 20 17 7 28 75 89 52 22 78 96 97 62 85 54 73 10 37 93 49 14 72 27 71 91 77 38 84 70 3...
output:
262807.7847388362
result:
ok found '262807.7847388', expected '262807.7847388', error '0.0000000'
Test #13:
score: 0
Accepted
time: 1ms
memory: 5672kb
input:
1000 6 3 73 3 44 64 34 50 44 97 16 2 63 94 50 41 12 70 14 12 86 83 73 36 92 47 66 54 68 52 17 92 38 5 22 47 96 67 3 21 9 35 45 77 51 80 54 12 13 95 59 41 53 49 77 23 40 19 60 74 99 93 51 51 2 22 6 46 34 29 28 68 92 20 37 93 88 69 7 30 62 79 55 30 56 36 62 89 70 47 28 78 28 15 59 43 63 59 29 67 45 86...
output:
452525.4353648754
result:
ok found '452525.4353649', expected '452525.4353649', error '0.0000000'
Test #14:
score: 0
Accepted
time: 2ms
memory: 5580kb
input:
1000 6 3 25 71 28 1 12 61 61 64 75 77 24 70 48 17 93 15 78 58 37 83 37 89 26 83 18 53 57 6 83 14 83 95 63 19 44 87 75 52 68 99 77 22 41 77 91 46 52 55 30 83 8 46 46 95 41 83 12 84 56 68 52 88 32 15 66 89 9 4 24 71 45 79 27 79 81 73 77 83 1 12 14 86 15 17 18 51 76 54 51 50 86 22 46 97 27 7 15 68 8 3 ...
output:
305463.1947235368
result:
ok found '305463.1947235', expected '305463.1947235', error '0.0000000'
Test #15:
score: 0
Accepted
time: 2ms
memory: 5440kb
input:
1000 6 0 9 73 54 66 24 28 96 71 75 93 67 82 2 69 25 88 22 25 62 26 91 21 28 73 91 11 36 89 40 53 6 39 20 84 52 30 19 10 29 40 16 40 33 87 41 93 51 2 83 44 86 96 55 68 2 62 43 52 90 89 54 93 72 8 25 55 29 24 24 31 29 12 55 3 35 71 77 14 11 47 3 58 66 25 48 44 98 28 24 46 39 74 68 88 69 68 99 23 66 15...
output:
198576.7034534805
result:
ok found '198576.7034535', expected '198576.7034535', error '0.0000000'
Test #16:
score: 0
Accepted
time: 3ms
memory: 5620kb
input:
1000 5 3 77 43 54 22 15 44 57 52 99 53 3 8 56 29 95 99 33 34 8 69 6 44 41 74 51 88 77 39 66 45 2 52 37 1 91 90 68 64 64 71 69 14 42 20 41 60 67 53 96 64 42 30 27 23 44 73 64 59 66 41 47 4 11 36 67 43 22 18 37 48 61 88 44 59 77 70 52 65 78 5 45 40 22 94 19 12 45 2 66 37 45 95 67 94 38 55 11 63 77 72 ...
output:
124894.6310147135
result:
ok found '124894.6310147', expected '124894.6310147', error '0.0000000'
Test #17:
score: -100
Wrong Answer
time: 4ms
memory: 5596kb
input:
1000 5 0 18 21 52 20 8 18 14 27 59 45 11 96 94 57 16 19 40 43 83 13 33 29 72 5 64 53 49 79 88 6 66 83 28 39 47 57 84 62 88 77 48 76 27 31 36 42 3 47 33 55 71 66 96 60 2 13 47 33 44 36 50 50 81 37 98 53 13 9 40 12 97 83 65 64 25 68 15 48 31 68 89 72 40 80 13 57 80 73 54 96 56 55 73 44 44 64 86 7 7 6 ...
output:
240251.9690925212
result:
wrong answer 1st numbers differ - expected: '316712.1332163', found: '240251.9690925', error = '0.2414185'