結果

問題 No.2855 Move on Grid
ユーザー t98slidert98slider
提出日時 2024-08-25 14:13:46
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,201 bytes
コンパイル時間 2,007 ms
コンパイル使用メモリ 207,536 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-08-25 14:13:59
合計ジャッジ時間 3,899 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 6 ms
6,944 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 3 ms
6,944 KB
testcase_08 WA -
testcase_09 AC 4 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 2 ms
6,944 KB
testcase_17 AC 2 ms
6,944 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 1 ms
6,940 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 26 ms
6,944 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
権限があれば一括ダウンロードができます

ソースコード

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;
    while(ok + 1 < ng){
        int mid = (ok + ng) / 2;
        vector dp(h, vector<int>(w, 1 << 30));
        dp[0][0] = A[0][0] < mid;
        for(int y = 0; y < h; y++){
            for(int x = 0; x < w; x++){
                if(y + 1 < h) dp[y + 1][x] = min(dp[y + 1][x], dp[y][x] + (A[y + 1][x] < mid));
                if(x + 1 < w) dp[y][x + 1] = min(dp[y][x + 1], dp[y][x] + (A[y][x + 1] < mid));
            }
        }
        (dp[h - 1][w - 1] <= k ? ok : ng) = mid;
    }
    cout << ok << '\n';
}
0