結果

問題 No.2855 Move on Grid
ユーザー Yoichiro NishimuraYoichiro Nishimura
提出日時 2024-10-01 14:39:19
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 798 ms / 3,000 ms
コード長 2,130 bytes
コンパイル時間 1,281 ms
コンパイル使用メモリ 119,504 KB
実行使用メモリ 15,184 KB
最終ジャッジ日時 2024-10-01 14:39:46
合計ジャッジ時間 22,447 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
6,368 KB
testcase_01 AC 199 ms
7,528 KB
testcase_02 AC 142 ms
6,392 KB
testcase_03 AC 87 ms
5,292 KB
testcase_04 AC 60 ms
5,248 KB
testcase_05 AC 129 ms
6,080 KB
testcase_06 AC 125 ms
6,244 KB
testcase_07 AC 13 ms
5,248 KB
testcase_08 AC 107 ms
5,740 KB
testcase_09 AC 51 ms
5,248 KB
testcase_10 AC 549 ms
14,032 KB
testcase_11 AC 501 ms
14,160 KB
testcase_12 AC 500 ms
14,028 KB
testcase_13 AC 528 ms
14,160 KB
testcase_14 AC 497 ms
14,164 KB
testcase_15 AC 520 ms
14,072 KB
testcase_16 AC 502 ms
14,196 KB
testcase_17 AC 500 ms
14,200 KB
testcase_18 AC 524 ms
14,032 KB
testcase_19 AC 497 ms
14,036 KB
testcase_20 AC 625 ms
14,160 KB
testcase_21 AC 656 ms
15,052 KB
testcase_22 AC 624 ms
15,052 KB
testcase_23 AC 587 ms
14,156 KB
testcase_24 AC 647 ms
14,940 KB
testcase_25 AC 655 ms
15,056 KB
testcase_26 AC 611 ms
14,260 KB
testcase_27 AC 616 ms
15,180 KB
testcase_28 AC 640 ms
14,972 KB
testcase_29 AC 610 ms
15,052 KB
testcase_30 AC 671 ms
14,964 KB
testcase_31 AC 651 ms
14,968 KB
testcase_32 AC 675 ms
14,928 KB
testcase_33 AC 683 ms
14,968 KB
testcase_34 AC 652 ms
14,932 KB
testcase_35 AC 669 ms
15,148 KB
testcase_36 AC 661 ms
15,052 KB
testcase_37 AC 798 ms
15,056 KB
testcase_38 AC 668 ms
15,184 KB
testcase_39 AC 656 ms
15,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <queue>
#include <algorithm>
#include <climits>

using namespace std;

class Di {
public:
    vector<long long> distance;
    vector<vector<pair<int, long long>>> G;
    long long inf = LLONG_MAX;

    Di(int n) {
        distance.assign(n + 1, inf);
        G.resize(n + 1);
    }

    void connect(int from, int to, long long cost) {
        G[from].emplace_back(to, cost);
    }

    void solve(int from) {
        priority_queue<pair<long long, int>, vector<pair<long long, int>>, greater<pair<long long, int>>> pq;
        distance[from] = 0;
        pq.emplace(0, from);

        while (!pq.empty()) {
            auto [dist, f] = pq.top();
            pq.pop();

            if (dist > distance[f]) continue;

            for (auto &[t, cost] : G[f]) {
                long long new_dist = distance[f] + cost;
                if (distance[t] > new_dist) {
                    distance[t] = new_dist;
                    pq.emplace(new_dist, t);
                }
            }
        }
    }
};

int main() {
    int H, W, K;
    cin >> H >> W >> K;

    vector<vector<long long>> map(H, vector<long long>(W));
    for (int y = 0; y < H; ++y) {
        for (int x = 0; x < W; ++x) {
            cin >> map[y][x];
        }
    }

    long long ng = 1LL << 30;
    long long ok = 0;

    while (ng - ok > 1) {
        long long mid = (ng + ok) / 2;
        Di di(H * W);

        for (int y = 0; y < H; ++y) {
            for (int x = 0; x < W; ++x) {
                int current = y * W + x + 1;
                if (x > 0) di.connect(current - 1, current, map[y][x] < mid);
                if (y > 0) di.connect((y - 1) * W + x + 1, current, map[y][x] < mid);
                if (x < W - 1) di.connect(current + 1, current, map[y][x] < mid);
                if (y < H - 1) di.connect((y + 1) * W + x + 1, current, map[y][x] < mid);
            }
        }

        di.solve(1);

        if (di.distance[H * W] + (map[0][0] < mid) <= K) {
            ok = mid;
        } else {
            ng = mid;
        }
    }

    cout << min(ok, 1000000000LL) << endl;

    return 0;
}
0