結果

問題 No.2855 Move on Grid
ユーザー Tatsu_mrTatsu_mr
提出日時 2024-08-25 19:10:54
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 184 ms / 3,000 ms
コード長 1,535 bytes
コンパイル時間 2,260 ms
コンパイル使用メモリ 212,940 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-08-25 19:11:03
合計ジャッジ時間 8,929 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
6,812 KB
testcase_01 AC 59 ms
6,940 KB
testcase_02 AC 32 ms
6,940 KB
testcase_03 AC 27 ms
6,944 KB
testcase_04 AC 20 ms
6,944 KB
testcase_05 AC 42 ms
6,944 KB
testcase_06 AC 36 ms
6,944 KB
testcase_07 AC 5 ms
6,944 KB
testcase_08 AC 33 ms
6,940 KB
testcase_09 AC 13 ms
6,940 KB
testcase_10 AC 94 ms
6,944 KB
testcase_11 AC 96 ms
6,940 KB
testcase_12 AC 95 ms
6,940 KB
testcase_13 AC 98 ms
6,940 KB
testcase_14 AC 93 ms
6,940 KB
testcase_15 AC 91 ms
6,948 KB
testcase_16 AC 101 ms
6,940 KB
testcase_17 AC 93 ms
6,940 KB
testcase_18 AC 95 ms
6,944 KB
testcase_19 AC 100 ms
6,944 KB
testcase_20 AC 181 ms
6,944 KB
testcase_21 AC 184 ms
6,944 KB
testcase_22 AC 181 ms
6,940 KB
testcase_23 AC 178 ms
6,940 KB
testcase_24 AC 184 ms
6,940 KB
testcase_25 AC 172 ms
6,940 KB
testcase_26 AC 175 ms
6,944 KB
testcase_27 AC 178 ms
6,944 KB
testcase_28 AC 178 ms
6,944 KB
testcase_29 AC 178 ms
6,944 KB
testcase_30 AC 174 ms
6,940 KB
testcase_31 AC 184 ms
6,944 KB
testcase_32 AC 175 ms
6,940 KB
testcase_33 AC 170 ms
6,944 KB
testcase_34 AC 169 ms
6,940 KB
testcase_35 AC 161 ms
6,944 KB
testcase_36 AC 141 ms
6,940 KB
testcase_37 AC 183 ms
6,940 KB
testcase_38 AC 173 ms
6,944 KB
testcase_39 AC 179 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

vector<int> di = {-1, 0, 1, 0};
vector<int> dj = {0, 1, 0, -1};

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];
        }
    }
    auto inc = [&](int i, int j) {
        return (0 <= i && i < n && 0 <= j && j < m);
    };
    int l = 1, r = 1000000001;
    while (r - l > 1) {
        int mid = (l + r) / 2;
        deque<pair<int, int>> d;
        vector<vector<int>> cnt(n, vector<int>(m, 2000000000));
        d.push_front({0, 0});
        cnt[0][0] = (a[0][0] < mid);
        while (!d.empty()) {
            auto [i, j] = d.front();
            d.pop_front();
            for (int k = 0; k < 4; k++) {
                int ni = i + di[k], nj = j + dj[k];
                if (!inc(ni, nj)) {
                    continue;
                }
                if (a[ni][nj] >= mid) {
                    if (cnt[ni][nj] > cnt[i][j]) {
                        cnt[ni][nj] = cnt[i][j];
                        d.push_front({ni, nj});
                    }
                } else {
                    if (cnt[ni][nj] > cnt[i][j] + 1) {
                        cnt[ni][nj] = cnt[i][j] + 1;
                        d.push_back({ni, nj});
                    }
                }
            }
        }
        if (cnt[n - 1][m - 1] <= k) {
            l = mid;
        } else {
            r = mid;
        }
    }
    cout << l << endl;
}
0