結果

問題 No.2855 Move on Grid
ユーザー soumatsoumat
提出日時 2024-08-25 14:16:31
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 202 ms / 3,000 ms
コード長 1,616 bytes
コンパイル時間 2,542 ms
コンパイル使用メモリ 217,832 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-08-25 14:16:41
合計ジャッジ時間 8,602 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
6,812 KB
testcase_01 AC 64 ms
6,940 KB
testcase_02 AC 38 ms
6,944 KB
testcase_03 AC 31 ms
6,944 KB
testcase_04 AC 22 ms
6,944 KB
testcase_05 AC 46 ms
6,940 KB
testcase_06 AC 46 ms
6,944 KB
testcase_07 AC 6 ms
6,944 KB
testcase_08 AC 36 ms
6,940 KB
testcase_09 AC 17 ms
6,940 KB
testcase_10 AC 38 ms
6,940 KB
testcase_11 AC 38 ms
6,940 KB
testcase_12 AC 37 ms
6,940 KB
testcase_13 AC 37 ms
6,940 KB
testcase_14 AC 37 ms
6,940 KB
testcase_15 AC 37 ms
6,940 KB
testcase_16 AC 38 ms
6,940 KB
testcase_17 AC 38 ms
6,940 KB
testcase_18 AC 38 ms
6,940 KB
testcase_19 AC 37 ms
6,944 KB
testcase_20 AC 199 ms
6,940 KB
testcase_21 AC 195 ms
6,940 KB
testcase_22 AC 195 ms
6,940 KB
testcase_23 AC 198 ms
6,940 KB
testcase_24 AC 198 ms
6,944 KB
testcase_25 AC 195 ms
6,940 KB
testcase_26 AC 201 ms
6,944 KB
testcase_27 AC 191 ms
6,944 KB
testcase_28 AC 194 ms
6,944 KB
testcase_29 AC 198 ms
6,940 KB
testcase_30 AC 198 ms
6,940 KB
testcase_31 AC 197 ms
6,940 KB
testcase_32 AC 202 ms
6,944 KB
testcase_33 AC 198 ms
6,944 KB
testcase_34 AC 198 ms
6,944 KB
testcase_35 AC 189 ms
6,940 KB
testcase_36 AC 170 ms
6,940 KB
testcase_37 AC 192 ms
6,944 KB
testcase_38 AC 198 ms
6,940 KB
testcase_39 AC 199 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
using ll = long long;

int n,m,k;
vector<vector<int>> a;
bool func(int X) {
    // 01bfs

    deque<tuple<int,int,int>> dq;
    vector<vector<int>> dp(n,vector<int>(m,INT_MAX));
    dq.push_back({0,0,a[0][0] < X});

    int dx[4] = {1,-1,0,0};
    int dy[4] = {0,0,1,-1};
    while (!dq.empty()) {
        auto [x,y,z] = dq.front();
        dq.pop_front();

        if (dp[x][y] != INT_MAX) continue;
        dp[x][y] = z;

        for (int l = 0; l < 4; l++) {
            int nx = x + dx[l];
            int ny = y + dy[l];

            if (nx < 0 || nx >= n) continue;
            if (ny < 0 || ny >= m) continue;

            if (dp[nx][ny] != INT_MAX) continue;

            int t = a[nx][ny] < X;

            if (t) dq.push_back({nx,ny,z+1});
            else dq.push_front({nx,ny,z});
        }
    }

    return dp[n-1][m-1] <= k;
}

int main(void) {
    cin >> n >> m >> k;

    // k >= n+mなら、経路全てを1e9に置き換えればよい

    a.resize(n,vector<int>(m));
    for (int i = 0; i < n; i++) {
        for (int j = 0; j < m; j++) {
            cin >> a[i][j];
        }
    }

    if (k >= n+m) {
        int ans = 1e9;
        cout << ans << endl;
        return 0;
    }

    // k個1e9に置き換えて良い

    // 最短距離で良いのか?

    // 二分探索
    // x以上に出来るか?

    int ng = 0, ok = 1e9+1;
    while (ng+1 != ok) {
        int md = (ng+ok)/2;
        if (!func(md)) {
            ok = md;
        }
        else {
            ng = md;
        }
    }

    cout << ng << endl;
    
    return 0;
}
0