QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#427577#8774. Manhattan Walkucup-team133#AC ✓13ms11060kbC++232.3kb2024-06-01 13:58:082024-06-01 13:58:09

Judging History

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

  • [2024-06-01 13:58:09]
  • 评测
  • 测评结果:AC
  • 用时:13ms
  • 内存:11060kb
  • [2024-06-01 13:58:08]
  • 提交

answer

#include <bits/stdc++.h>
#ifdef LOCAL
#include <debug.hpp>
#else
#define debug(...) void(0)
#endif

template <class T> std::istream& operator>>(std::istream& is, std::vector<T>& v) {
    for (auto& e : v) {
        is >> e;
    }
    return is;
}

template <class T> std::ostream& operator<<(std::ostream& os, const std::vector<T>& v) {
    for (std::string_view sep = ""; const auto& e : v) {
        os << std::exchange(sep, " ") << e;
    }
    return os;
}

template <class T, class U = T> bool chmin(T& x, U&& y) {
    return y < x and (x = std::forward<U>(y), true);
}

template <class T, class U = T> bool chmax(T& x, U&& y) {
    return x < y and (x = std::forward<U>(y), true);
}

template <class T> void mkuni(std::vector<T>& v) {
    std::ranges::sort(v);
    auto result = std::ranges::unique(v);
    v.erase(result.begin(), result.end());
}

template <class T> int lwb(const std::vector<T>& v, const T& x) {
    return std::distance(v.begin(), std::ranges::lower_bound(v, x));
}

using ll = long long;

using namespace std;

const double INF = 1e18;

int main() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    cout << fixed << setprecision(15);
    int r, c, p;
    cin >> r >> c >> p;

    double wait = 1.0 * p / 2;
    vector dp(r + 1, vector<double>(c + 1, INF));  // (i, j) にたどり着いてからゴールに到達するまでの待ち時間の期待値
    array<double, 2> tmp;
    for (int i = r - 1; i >= 0; i--) {
        for (int j = c - 1; j >= 0; j--) {
            double& val = dp[i][j];
            if (i == r - 1 and j == c - 1) {
                val = 0;
                continue;
            }
            val = 0;
            tmp[0] = dp[i + 1][j], tmp[1] = dp[i][j + 1];
            for (int _ = 0; _ < 2; _++) {
                if (tmp[0] <= tmp[1]) {
                    val += tmp[0];
                } else if (tmp[1] + p <= tmp[0]) {
                    val += tmp[1] + wait;
                } else {
                    double d = tmp[0] - tmp[1], prob = d / p;
                    // counter <= d -> 1, o.w. -> 0
                    val += (d / 2 + tmp[1]) * prob + tmp[0] * (1 - prob);
                }
                swap(tmp[0], tmp[1]);
            }
            val /= 2;
        }
    }

    auto ans = dp[0][0];
    cout << ans << '\n';
    return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 1ms
memory: 3896kb

input:

2 3 8

output:

2.875000000000000

result:

ok found '2.8750000', expected '2.8750000', error '0.0000000'

Test #2:

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

input:

5 5 5

output:

2.432233868873881

result:

ok found '2.4322339', expected '2.4322339', error '0.0000000'

Test #3:

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

input:

1 1 1

output:

0.000000000000000

result:

ok found '0.0000000', expected '0.0000000', error '-0.0000000'

Test #4:

score: 0
Accepted
time: 13ms
memory: 11060kb

input:

1000 1000 1000000000

output:

1782317138.808375358581543

result:

ok found '1782317138.8083754', expected '1782317138.8083761', error '0.0000000'

Test #5:

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

input:

1 4 5

output:

3.750000000000000

result:

ok found '3.7500000', expected '3.7500000', error '0.0000000'

Test #6:

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

input:

4 1 5

output:

3.750000000000000

result:

ok found '3.7500000', expected '3.7500000', error '0.0000000'

Test #7:

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

input:

1 1 1000000000

output:

0.000000000000000

result:

ok found '0.0000000', expected '0.0000000', error '-0.0000000'

Test #8:

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

input:

1 2 1000000000

output:

250000000.000000000000000

result:

ok found '250000000.0000000', expected '250000000.0000000', error '0.0000000'

Test #9:

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

input:

2 1 1000000000

output:

250000000.000000000000000

result:

ok found '250000000.0000000', expected '250000000.0000000', error '0.0000000'

Test #10:

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

input:

1 2 1

output:

0.250000000000000

result:

ok found '0.2500000', expected '0.2500000', error '0.0000000'

Test #11:

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

input:

2 1 1

output:

0.250000000000000

result:

ok found '0.2500000', expected '0.2500000', error '0.0000000'

Test #12:

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

input:

1 10 3

output:

6.750000000000000

result:

ok found '6.7500000', expected '6.7500000', error '0.0000000'

Test #13:

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

input:

10 1 3

output:

6.750000000000000

result:

ok found '6.7500000', expected '6.7500000', error '0.0000000'

Test #14:

score: 0
Accepted
time: 13ms
memory: 11060kb

input:

997 993 998244353

output:

1779941051.346159934997559

result:

ok found '1779941051.3461599', expected '1779941051.3461628', error '0.0000000'

Test #15:

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

input:

988 313 886183312

output:

78753022570.483337402343750

result:

ok found '78753022570.4833374', expected '78753022570.4833527', error '0.0000000'

Test #16:

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

input:

583 286 322190846

output:

8636356976.843711853027344

result:

ok found '8636356976.8437119', expected '8636356976.8437138', error '0.0000000'

Test #17:

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

input:

892 468 494964816

output:

17125998682.729242324829102

result:

ok found '17125998682.7292423', expected '17125998682.7292328', error '0.0000000'

Test #18:

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

input:

26 882 386682745

output:

78231677700.750488281250000

result:

ok found '78231677700.7504883', expected '78231677700.7504883', error '0.0000000'

Test #19:

score: 0
Accepted
time: 10ms
memory: 9472kb

input:

867 926 422131798

output:

945100500.399106383323669

result:

ok found '945100500.3991064', expected '945100500.3991071', error '0.0000000'

Test #20:

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

input:

37 68 19

output:

62.284459880159048

result:

ok found '62.2844599', expected '62.2844599', error '0.0000000'

Test #21:

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

input:

23 90 80

output:

860.050698735791002

result:

ok found '860.0506987', expected '860.0506987', error '0.0000000'

Test #22:

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

input:

43 55 85

output:

118.389267967564194

result:

ok found '118.3892680', expected '118.3892680', error '0.0000000'

Test #23:

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

input:

93 66 43

output:

97.904840858751101

result:

ok found '97.9048409', expected '97.9048409', error '0.0000000'

Test #24:

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

input:

78 93 30

output:

44.845452326450598

result:

ok found '44.8454523', expected '44.8454523', error '0.0000000'

Test #25:

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

input:

9 5 481032867

output:

400507342.366738319396973

result:

ok found '400507342.3667383', expected '400507342.3667384', error '0.0000000'

Test #26:

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

input:

366 73 3

output:

149.486464233096001

result:

ok found '149.4864642', expected '149.4864642', error '0.0000000'

Test #27:

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

input:

6 4 5

output:

2.894645169728758

result:

ok found '2.8946452', expected '2.8946452', error '0.0000000'

Test #28:

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

input:

8 10 5

output:

3.397360852474908

result:

ok found '3.3973609', expected '3.3973609', error '0.0000000'

Test #29:

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

input:

10 1 7

output:

15.750000000000000

result:

ok found '15.7500000', expected '15.7500000', error '0.0000000'

Test #30:

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

input:

10 7 10

output:

7.371646607394141

result:

ok found '7.3716466', expected '7.3716466', error '0.0000000'

Test #31:

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

input:

2 8 1

output:

1.327106919465782

result:

ok found '1.3271069', expected '1.3271069', error '0.0000000'