結果

問題 No.2855 Move on Grid
ユーザー t98slidert98slider
提出日時 2024-08-25 14:17:10
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 146 ms / 3,000 ms
コード長 1,713 bytes
コンパイル時間 2,275 ms
コンパイル使用メモリ 215,312 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-08-25 14:17:18
合計ジャッジ時間 6,684 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
6,816 KB
testcase_01 AC 49 ms
6,940 KB
testcase_02 AC 25 ms
6,940 KB
testcase_03 AC 24 ms
6,944 KB
testcase_04 AC 18 ms
6,944 KB
testcase_05 AC 33 ms
6,940 KB
testcase_06 AC 29 ms
6,940 KB
testcase_07 AC 5 ms
6,944 KB
testcase_08 AC 28 ms
6,940 KB
testcase_09 AC 10 ms
6,944 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 1 ms
6,940 KB
testcase_17 AC 2 ms
6,944 KB
testcase_18 AC 2 ms
6,944 KB
testcase_19 AC 2 ms
6,940 KB
testcase_20 AC 141 ms
6,944 KB
testcase_21 AC 143 ms
6,940 KB
testcase_22 AC 144 ms
6,944 KB
testcase_23 AC 146 ms
6,944 KB
testcase_24 AC 144 ms
6,940 KB
testcase_25 AC 139 ms
6,940 KB
testcase_26 AC 143 ms
6,940 KB
testcase_27 AC 146 ms
6,940 KB
testcase_28 AC 145 ms
6,944 KB
testcase_29 AC 144 ms
6,940 KB
testcase_30 AC 136 ms
6,944 KB
testcase_31 AC 139 ms
6,944 KB
testcase_32 AC 144 ms
6,944 KB
testcase_33 AC 135 ms
6,944 KB
testcase_34 AC 133 ms
6,940 KB
testcase_35 AC 135 ms
6,944 KB
testcase_36 AC 113 ms
6,940 KB
testcase_37 AC 143 ms
6,944 KB
testcase_38 AC 139 ms
6,940 KB
testcase_39 AC 141 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

template<class T> istream& operator >> (istream& is, vector<T>& vec) {
    for(T& x : vec) is >> x;
    return is;
}

template<class T> ostream& operator << (ostream& os, const vector<T>& vec) {
    if(vec.empty()) return os;
    os << vec[0];
    for(auto it = vec.begin(); ++it != vec.end(); ) os << ' ' << *it;
    return os;
}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    int h, w, k;
    cin >> h >> w >> k;
    if(k > h + w){
        cout << 1'000'000'000 << '\n';
        return 0;
    }
    vector A(h, vector<int>(w));
    cin >> A;
    k = min(k, h + w);
    int ok = 0, ng = 1'000'000'005;
    deque<pair<int,int>> dq;
    vector<pair<int,int>> dir = {{0, 1}, {1, 0}, {0, -1}, {-1, 0}};
    while(ok + 1 < ng){
        int mid = (ok + ng) / 2;
        vector dp(h, vector<int>(w, 1 << 30));
        dp[0][0] = A[0][0] < mid;
        dq.emplace_back(0, 0);
        while(!dq.empty()){
            auto [y, x] = dq.front();
            dq.pop_front();
            for(auto [ny, nx] : dir){
                ny += y, nx += x;
                if(ny < 0 || nx < 0 || ny >= h || nx >= w) continue;
                if(A[ny][nx] < mid){
                    if(dp[y][x] + 1 < dp[ny][nx]){
                        dp[ny][nx] = dp[y][x] + 1;
                        dq.emplace_back(ny, nx);
                    }
                }else{
                    if(dp[y][x] < dp[ny][nx]){
                        dp[ny][nx] = dp[y][x];
                        dq.emplace_front(ny, nx);
                    }
                }
            }
        }
        (dp[h - 1][w - 1] <= k ? ok : ng) = mid;
    }
    cout << ok << '\n';
}
0