結果

問題 No.2855 Move on Grid
ユーザー ayataka5ayataka5
提出日時 2024-08-25 14:57:54
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 188 ms / 3,000 ms
コード長 1,414 bytes
コンパイル時間 3,249 ms
コンパイル使用メモリ 255,904 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-08-25 14:58:21
合計ジャッジ時間 8,809 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
6,816 KB
testcase_01 AC 54 ms
6,944 KB
testcase_02 AC 32 ms
6,948 KB
testcase_03 AC 26 ms
6,944 KB
testcase_04 AC 19 ms
6,940 KB
testcase_05 AC 37 ms
6,944 KB
testcase_06 AC 37 ms
6,940 KB
testcase_07 AC 5 ms
6,940 KB
testcase_08 AC 32 ms
6,940 KB
testcase_09 AC 13 ms
6,944 KB
testcase_10 AC 89 ms
6,944 KB
testcase_11 AC 101 ms
6,940 KB
testcase_12 AC 90 ms
6,940 KB
testcase_13 AC 90 ms
6,944 KB
testcase_14 AC 89 ms
6,940 KB
testcase_15 AC 86 ms
6,944 KB
testcase_16 AC 88 ms
6,940 KB
testcase_17 AC 87 ms
6,944 KB
testcase_18 AC 87 ms
6,940 KB
testcase_19 AC 89 ms
6,940 KB
testcase_20 AC 171 ms
6,944 KB
testcase_21 AC 188 ms
6,940 KB
testcase_22 AC 158 ms
6,944 KB
testcase_23 AC 161 ms
6,940 KB
testcase_24 AC 155 ms
6,944 KB
testcase_25 AC 152 ms
6,940 KB
testcase_26 AC 154 ms
6,940 KB
testcase_27 AC 157 ms
6,944 KB
testcase_28 AC 161 ms
6,944 KB
testcase_29 AC 167 ms
6,940 KB
testcase_30 AC 156 ms
6,940 KB
testcase_31 AC 154 ms
6,940 KB
testcase_32 AC 157 ms
6,944 KB
testcase_33 AC 159 ms
6,944 KB
testcase_34 AC 158 ms
6,940 KB
testcase_35 AC 151 ms
6,944 KB
testcase_36 AC 140 ms
6,948 KB
testcase_37 AC 150 ms
6,940 KB
testcase_38 AC 150 ms
6,940 KB
testcase_39 AC 152 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

const int dx[4] = {1, -1, 0, 0};
const int dy[4] = {0, 0, 1, -1};

int main() {
    int N, M, K;
    cin >> N >> M >> K;
    vector A(N, vector(M, 0));
    for(int i = 0; i < N; i++) for(int j = 0; j < M; j++) cin >> A[i][j];
    auto isok = [&](int v) -> bool {
        vector P(N, vector(M, N*M+1));
        P[0][0] = (A[0][0] < v);
        deque<pair<int, int>> deq;
        deq.push_front({0, 0});
        while(!deq.empty()) {
            auto [x, y] = deq.front(); deq.pop_front();
            for(int dir = 0; dir < 4; dir++) {
                int nx(x + dx[dir]), ny(y + dy[dir]);
                if(0 <= nx && nx < N && 0 <= ny && ny < M) {
                    if(A[nx][ny] < v) {
                        if(P[x][y]+1 < P[nx][ny]) {
                            P[nx][ny] = P[x][y]+1;
                            deq.push_back({nx, ny});
                        }
                    }else {
                        if(P[x][y] < P[nx][ny]) {
                            P[nx][ny] = P[x][y];
                            deq.push_front({nx, ny});
                        }
                    }
                }
            }
        }
        return (P[N-1][M-1] <= K);
    };
    int ok(1), ng(1000000001);
    while(1 < ng-ok) {
        int mid((ok+ng)/2);
        if(isok(mid)) ok = mid;
        else ng = mid;
    }
    cout << ok << endl;
    return 0;
}
0