結果

問題 No.2855 Move on Grid
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2024-10-15 14:52:06
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 125 ms / 3,000 ms
コード長 1,563 bytes
コンパイル時間 2,351 ms
コンパイル使用メモリ 212,248 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-15 14:52:15
合計ジャッジ時間 7,037 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
5,248 KB
testcase_01 AC 35 ms
5,248 KB
testcase_02 AC 21 ms
5,248 KB
testcase_03 AC 17 ms
5,248 KB
testcase_04 AC 13 ms
5,248 KB
testcase_05 AC 26 ms
5,248 KB
testcase_06 AC 26 ms
5,248 KB
testcase_07 AC 4 ms
5,248 KB
testcase_08 AC 21 ms
5,248 KB
testcase_09 AC 11 ms
5,248 KB
testcase_10 AC 76 ms
5,248 KB
testcase_11 AC 76 ms
5,248 KB
testcase_12 AC 76 ms
5,248 KB
testcase_13 AC 76 ms
5,248 KB
testcase_14 AC 76 ms
5,248 KB
testcase_15 AC 76 ms
5,248 KB
testcase_16 AC 76 ms
5,248 KB
testcase_17 AC 76 ms
5,248 KB
testcase_18 AC 76 ms
5,248 KB
testcase_19 AC 76 ms
5,248 KB
testcase_20 AC 106 ms
5,248 KB
testcase_21 AC 105 ms
5,248 KB
testcase_22 AC 106 ms
5,248 KB
testcase_23 AC 106 ms
5,248 KB
testcase_24 AC 106 ms
5,248 KB
testcase_25 AC 105 ms
5,248 KB
testcase_26 AC 106 ms
5,248 KB
testcase_27 AC 125 ms
5,248 KB
testcase_28 AC 103 ms
5,248 KB
testcase_29 AC 106 ms
5,248 KB
testcase_30 AC 104 ms
5,248 KB
testcase_31 AC 104 ms
5,248 KB
testcase_32 AC 105 ms
5,248 KB
testcase_33 AC 104 ms
5,248 KB
testcase_34 AC 104 ms
5,248 KB
testcase_35 AC 102 ms
5,248 KB
testcase_36 AC 91 ms
5,248 KB
testcase_37 AC 103 ms
5,248 KB
testcase_38 AC 103 ms
5,248 KB
testcase_39 AC 104 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
using ll = long long;

int main(){
    cin.tie(nullptr);
    ios_base::sync_with_stdio(false);

    /*
       f(X)=Xより小さい数を通る回数がK回以下か?
       これのleft maxが答え。
    */

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

    auto f=[&](int i, int j){
        return 0 <= i && i < N && 0 <= j && j < M;
    };
    int dx[4] = {0,1,0,-1};
    int dy[4] = {1,0,-1,0};
    const int inf=1e9;

    auto bfs=[&](ll X){
        int x, y, nx, ny, c, alt;
        deque<pair<int, int>> que;
        vector dist(N, vector<int>(M, inf));
        dist[0][0] = (a[0][0] < X);
        que.push_back({0, 0});
        while(!que.empty()){
            tie(x, y) = que.front();
            que.pop_front();
            for (int i=0; i<4; i++){
                nx = x+dx[i]; ny = y+dy[i];
                if (f(nx, ny)){
                    c = (a[nx][ny]<X);
                    alt = dist[x][y]+c;
                    if (alt < dist[nx][ny]){
                        dist[nx][ny] = alt;
                        if (c) que.push_back({nx, ny});
                        else que.push_front({nx, ny});
                    }
                }
            }
        }
        return dist[N-1][M-1] <= K;
    };

    ll l=0, r=1e9+1, c;
    while(r-l>1){
        c = (l+r)/2;
        if (bfs(c)) l=c;
        else r=c;
    }

    cout << l << endl;

    return 0;
}
0