結果

問題 No.2855 Move on Grid
ユーザー Today03Today03
提出日時 2024-08-29 16:53:16
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 133 ms / 3,000 ms
コード長 1,494 bytes
コンパイル時間 3,796 ms
コンパイル使用メモリ 258,904 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-08-29 16:53:27
合計ジャッジ時間 10,091 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
6,816 KB
testcase_01 AC 43 ms
6,816 KB
testcase_02 AC 26 ms
6,940 KB
testcase_03 AC 21 ms
6,940 KB
testcase_04 AC 15 ms
6,944 KB
testcase_05 AC 31 ms
6,940 KB
testcase_06 AC 32 ms
6,940 KB
testcase_07 AC 5 ms
6,940 KB
testcase_08 AC 25 ms
6,944 KB
testcase_09 AC 13 ms
6,944 KB
testcase_10 AC 106 ms
6,944 KB
testcase_11 AC 97 ms
6,944 KB
testcase_12 AC 96 ms
6,940 KB
testcase_13 AC 97 ms
6,944 KB
testcase_14 AC 98 ms
6,940 KB
testcase_15 AC 97 ms
6,944 KB
testcase_16 AC 96 ms
6,940 KB
testcase_17 AC 97 ms
6,940 KB
testcase_18 AC 97 ms
6,944 KB
testcase_19 AC 95 ms
6,940 KB
testcase_20 AC 126 ms
6,944 KB
testcase_21 AC 125 ms
6,944 KB
testcase_22 AC 128 ms
6,940 KB
testcase_23 AC 126 ms
6,944 KB
testcase_24 AC 129 ms
6,940 KB
testcase_25 AC 127 ms
6,944 KB
testcase_26 AC 127 ms
6,944 KB
testcase_27 AC 125 ms
6,940 KB
testcase_28 AC 124 ms
6,940 KB
testcase_29 AC 127 ms
6,940 KB
testcase_30 AC 124 ms
6,940 KB
testcase_31 AC 126 ms
6,940 KB
testcase_32 AC 129 ms
6,944 KB
testcase_33 AC 126 ms
6,940 KB
testcase_34 AC 125 ms
6,940 KB
testcase_35 AC 124 ms
6,940 KB
testcase_36 AC 113 ms
6,944 KB
testcase_37 AC 122 ms
6,944 KB
testcase_38 AC 125 ms
6,944 KB
testcase_39 AC 133 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
const int INF = 1e9 + 10;
const ll INFL = 4e18;

int main() {
    int N, M, K;
    cin >> N >> M >> K;
    vector<vector<int>> A(N, vector<int>(M));
    for (int i = 0; i < N; i++) {
        for (int j = 0; j < M; j++) {
            cin >> A[i][j];
        }
    }

    const int inf = 1e9;
    int lo = 0, hi = inf + 1;
    while (hi - lo > 1) {
        int mid = (hi + lo) / 2;

        vector<vector<int>> dp(N, vector<int>(M, INF));
        deque<tuple<int, int, int>> dq;
        dp[0][0] = A[0][0] >= mid ? 0 : 1;
        dq.push_back({0, 0, dp[0][0]});

        while (!dq.empty()) {
            auto [x, y, d] = dq.front();
            dq.pop_front();

            if (dp[x][y] < d) continue;

            for (auto [dx, dy] : {pair{0, 1}, {1, 0}, {0, -1}, {-1, 0}}) {
                int nx = x + dx;
                int ny = y + dy;
                if (nx < 0 || nx >= N || ny < 0 || ny >= M) continue;
                int cost = A[nx][ny] >= mid ? 0 : 1;
                if (dp[x][y] + cost >= dp[nx][ny]) continue;
                dp[nx][ny] = dp[x][y] + cost;
                if (cost == 1) {
                    dq.push_back({nx, ny, dp[nx][ny]});
                } else {
                    dq.push_front({nx, ny, dp[nx][ny]});
                }
            }
        }

        if (dp.back().back() > K) {
            hi = mid;
        } else {
            lo = mid;
        }
    }

    cout << lo << endl;
}
0