結果

問題 No.2855 Move on Grid
ユーザー ayataka5ayataka5
提出日時 2024-08-25 14:52:52
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,400 bytes
コンパイル時間 2,832 ms
コンパイル使用メモリ 254,944 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-08-25 14:53:07
合計ジャッジ時間 8,160 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 47 ms
6,944 KB
testcase_02 AC 30 ms
6,940 KB
testcase_03 AC 21 ms
6,940 KB
testcase_04 AC 17 ms
6,944 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 4 ms
6,944 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 86 ms
6,944 KB
testcase_11 AC 88 ms
6,940 KB
testcase_12 AC 87 ms
6,944 KB
testcase_13 AC 92 ms
6,940 KB
testcase_14 AC 86 ms
6,940 KB
testcase_15 AC 89 ms
6,940 KB
testcase_16 AC 90 ms
6,940 KB
testcase_17 AC 92 ms
6,940 KB
testcase_18 AC 88 ms
6,944 KB
testcase_19 AC 89 ms
6,940 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 133 ms
6,940 KB
testcase_24 WA -
testcase_25 AC 143 ms
6,940 KB
testcase_26 AC 142 ms
6,940 KB
testcase_27 AC 136 ms
6,940 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 140 ms
6,940 KB
testcase_31 AC 138 ms
6,944 KB
testcase_32 AC 144 ms
6,940 KB
testcase_33 WA -
testcase_34 AC 150 ms
6,940 KB
testcase_35 WA -
testcase_36 AC 122 ms
6,944 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 AC 141 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] = 0;
        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[x][y] < 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