結果

問題 No.2855 Move on Grid
ユーザー Iroha_3856Iroha_3856
提出日時 2024-08-25 15:30:32
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 185 ms / 3,000 ms
コード長 1,777 bytes
コンパイル時間 3,215 ms
コンパイル使用メモリ 256,616 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-08-25 15:30:42
合計ジャッジ時間 9,769 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
6,812 KB
testcase_01 AC 62 ms
6,940 KB
testcase_02 AC 32 ms
6,940 KB
testcase_03 AC 28 ms
6,944 KB
testcase_04 AC 20 ms
6,944 KB
testcase_05 AC 42 ms
6,940 KB
testcase_06 AC 39 ms
6,944 KB
testcase_07 AC 5 ms
6,940 KB
testcase_08 AC 35 ms
6,940 KB
testcase_09 AC 16 ms
6,944 KB
testcase_10 AC 110 ms
6,944 KB
testcase_11 AC 108 ms
6,940 KB
testcase_12 AC 104 ms
6,940 KB
testcase_13 AC 105 ms
6,944 KB
testcase_14 AC 110 ms
6,940 KB
testcase_15 AC 106 ms
6,944 KB
testcase_16 AC 104 ms
6,940 KB
testcase_17 AC 104 ms
6,940 KB
testcase_18 AC 106 ms
6,944 KB
testcase_19 AC 107 ms
6,944 KB
testcase_20 AC 178 ms
6,944 KB
testcase_21 AC 173 ms
6,944 KB
testcase_22 AC 178 ms
6,944 KB
testcase_23 AC 173 ms
6,940 KB
testcase_24 AC 170 ms
6,940 KB
testcase_25 AC 170 ms
6,940 KB
testcase_26 AC 173 ms
6,940 KB
testcase_27 AC 172 ms
6,944 KB
testcase_28 AC 177 ms
6,940 KB
testcase_29 AC 178 ms
6,940 KB
testcase_30 AC 174 ms
6,940 KB
testcase_31 AC 171 ms
6,944 KB
testcase_32 AC 182 ms
6,944 KB
testcase_33 AC 175 ms
6,940 KB
testcase_34 AC 180 ms
6,940 KB
testcase_35 AC 174 ms
6,944 KB
testcase_36 AC 143 ms
6,940 KB
testcase_37 AC 174 ms
6,940 KB
testcase_38 AC 171 ms
6,940 KB
testcase_39 AC 185 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#define rep(i, l, r) for (int i = (int)(l); i<(int)(r); i++)
#define ll long long

template<class T> bool chmin(T& a, T b) {if (a > b) {a = b; return 1;} return 0;}
template<class T> bool chmax(T& a, T b) {if (a < b) {a = b; return 1;} return 0;}

const int inf = 1e9;
const ll INF = 4e18;

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

int main() {
    int N, M, K; cin >> N >> M >> K;
    vector<vector<int>> A(N, vector<int>(M));
    rep(i, 0, N) rep(j, 0, M) cin >> A[i][j];
    auto isok = [&](int x) -> bool{
        deque<pair<int, int>> Q;
        vector<vector<int>> dist(N, vector<int>(M, -1));
        dist[0][0] = (A[0][0] < x? 1 : 0);
        Q.push_back({0, 0});
        while(!Q.empty()) {
            auto[r, c] = Q.front(); Q.pop_front();
            //cout << r << " " << c << " " << dist[r][c] << endl;
            rep(k, 0, 4) {
                int ni = r + di[k], nj = c + dj[k];
                if (ni < 0 || nj < 0 || ni >= N || nj >= M) continue;
                if (A[ni][nj] < x) {
                    if (dist[ni][nj] == -1 || chmin(dist[ni][nj], dist[r][c] + 1)) {
                        dist[ni][nj] = dist[r][c] + 1; 
                        Q.push_back({ni, nj});
                    }
                }
                else {
                    if (dist[ni][nj] == -1 || chmin(dist[ni][nj], dist[r][c])) {
                        dist[ni][nj] = dist[r][c]; 
                        Q.push_front({ni, nj});
                    }
                }
            }
        }
        return dist[N-1][M-1] <= K;
    };
    int ng = 1'000'000'001, ok = 1;
    while(ng-ok > 1) {
        int mid = (ok+ng)/2;
        if (isok(mid)) ok = mid;
        else ng = mid;
    }
    cout << ok << endl;
}
0