結果

問題 No.2855 Move on Grid
ユーザー t98slidert98slider
提出日時 2024-08-25 14:04:47
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,666 bytes
コンパイル時間 2,728 ms
コンパイル使用メモリ 223,712 KB
実行使用メモリ 84,024 KB
最終ジャッジ日時 2024-08-25 14:05:01
合計ジャッジ時間 13,396 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 402 ms
31,788 KB
testcase_01 AC 199 ms
14,868 KB
testcase_02 AC 15 ms
6,940 KB
testcase_03 AC 165 ms
14,372 KB
testcase_04 AC 100 ms
9,264 KB
testcase_05 AC 335 ms
23,140 KB
testcase_06 AC 2,641 ms
84,024 KB
testcase_07 AC 55 ms
6,944 KB
testcase_08 AC 101 ms
9,720 KB
testcase_09 AC 1,112 ms
44,648 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 2 ms
6,944 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 TLE -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
権限があれば一括ダウンロードができます

ソースコード

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;
    }
    k = min(k, h + w);
    vector dp(h, vector(w, vector<ll>(k + 1, -1'000'000'003)));
    vector A(h, vector<ll>(w));
    cin >> A;
    priority_queue<tuple<ll,int,int,int>> pq;
    dp[0][0][0] = A[0][0];
    pq.emplace(A[0][0], 0, 0, 0);
    if(k >= 1){
        dp[0][0][1] = 1'000'000'000;
        pq.emplace(1'000'000'000, 0, 0, 1);
    }
    vector<pair<int,int>> dir = {{0, 1}, {1, 0}, {0, -1}, {-1, 0}};
    while(!pq.empty()){
        auto [d, y, x, s] = pq.top();
        pq.pop();
        if(d < dp[y][x][s]) continue;
        for(auto [ny, nx] : dir){
            ny += y, nx += x;
            if(ny < 0 || nx < 0 || ny >= h || nx >= w) continue;
            if(min(d, A[ny][nx]) > dp[ny][nx][s]){
                dp[ny][nx][s] = min(d, A[ny][nx]);
                pq.emplace(dp[ny][nx][s], ny, nx, s);
            }
            if(s + 1 <= k && d > dp[ny][nx][s + 1]){
                dp[ny][nx][s + 1] = d;
                pq.emplace(d, ny, nx, s + 1);
            }
        }
    }
    cout << *max_element(dp[h - 1][w - 1].begin(), dp[h - 1][w - 1].end()) << '\n';
}
0