結果

問題 No.2855 Move on Grid
ユーザー 寝癖寝癖
提出日時 2024-08-25 14:40:42
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 139 ms / 3,000 ms
コード長 3,271 bytes
コンパイル時間 5,421 ms
コンパイル使用メモリ 313,640 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-08-25 14:40:57
合計ジャッジ時間 10,651 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
6,812 KB
testcase_01 AC 46 ms
6,940 KB
testcase_02 AC 29 ms
6,940 KB
testcase_03 AC 21 ms
6,940 KB
testcase_04 AC 16 ms
6,940 KB
testcase_05 AC 31 ms
6,944 KB
testcase_06 AC 32 ms
6,940 KB
testcase_07 AC 5 ms
6,944 KB
testcase_08 AC 26 ms
6,940 KB
testcase_09 AC 13 ms
6,944 KB
testcase_10 AC 97 ms
6,940 KB
testcase_11 AC 96 ms
6,940 KB
testcase_12 AC 99 ms
6,944 KB
testcase_13 AC 106 ms
6,940 KB
testcase_14 AC 100 ms
6,940 KB
testcase_15 AC 99 ms
6,944 KB
testcase_16 AC 103 ms
6,940 KB
testcase_17 AC 101 ms
6,940 KB
testcase_18 AC 100 ms
6,940 KB
testcase_19 AC 97 ms
6,944 KB
testcase_20 AC 135 ms
6,940 KB
testcase_21 AC 136 ms
6,944 KB
testcase_22 AC 139 ms
6,944 KB
testcase_23 AC 135 ms
6,940 KB
testcase_24 AC 135 ms
6,940 KB
testcase_25 AC 135 ms
6,940 KB
testcase_26 AC 135 ms
6,940 KB
testcase_27 AC 130 ms
6,940 KB
testcase_28 AC 127 ms
6,940 KB
testcase_29 AC 131 ms
6,944 KB
testcase_30 AC 129 ms
6,944 KB
testcase_31 AC 137 ms
6,940 KB
testcase_32 AC 127 ms
6,940 KB
testcase_33 AC 134 ms
6,944 KB
testcase_34 AC 128 ms
6,940 KB
testcase_35 AC 136 ms
6,944 KB
testcase_36 AC 123 ms
6,940 KB
testcase_37 AC 130 ms
6,944 KB
testcase_38 AC 128 ms
6,944 KB
testcase_39 AC 136 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>

namespace neguse {}
using namespace std;
using namespace atcoder;
using namespace neguse;

typedef long long ll;
typedef long double ld;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;
typedef vector<int> vi;
typedef vector<ll> vll;
typedef vector<ld> vld;
typedef vector<vi> vvi;
typedef vector<vll> vvll;
typedef vector<string> vs;
typedef vector<pii> vpii;
typedef vector<pll> vpll;

#define _overload3(_1,_2,_3,name,...) name
#define _rep(i,n) repi(i,0,n)
#define repi(i,a,b) for(int i=int(a);i<int(b);++i)
#define rep(...) _overload3(__VA_ARGS__,repi,_rep,)(__VA_ARGS__)
#define _rrep(i,n) rrepi(i,n-1,-1)
#define rrepi(i,a,b) for(int i=int(a);i>int(b);--i)
#define rrep(...) _overload3(__VA_ARGS__,rrepi,_rrep)(__VA_ARGS__)
#define _each1(i,v) for(auto& i:v)
#define _each2(i,j,v) for(auto& [i,j]:v)
#define each(...) _overload3(__VA_ARGS__,_each2,_each1,)(__VA_ARGS__)

#define all(x) (x).begin(),(x).end()
#define rall(x) (x).rbegin(),(x).rend()
#define SORT(x) sort(all(x))
#define RSORT(x) sort(rall(x))
#define REVERSE(x) reverse(all(x))

#define dump(x) cerr << #x << " = " << (x) << '\n'
#define print(x) cout << (x) << '\n'
#define yes(f) cout << ((f) ? "Yes" : "No") << '\n'

#define ge(v, x) (int)(lower_bound(all(v), x) - v.begin())
#define gt(v, x) (int)(upper_bound(all(v), x) - v.begin())
#define le(v, x) (int)(upper_bound(all(v), x) - v.begin())-1
#define lt(v, x) (int)(lower_bound(all(v), x) - v.begin())-1

template<class T>bool chmax(T &a, const T &b) { if (a<b) { a=b; return 1; } return 0; }
template<class T>bool chmin(T &a, const T &b) { if (b<a) { a=b; return 1; } return 0; }

ostream& operator<<(ostream& os, const modint998244353& a) { return os << a.val(); }
ostream& operator<<(ostream& os, const modint1000000007& a) { return os << a.val(); }

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) { for (const T& x : vec) os << x << ' '; return os; }


using namespace neguse;

int main() {
    int N, M, K;
    cin >> N >> M >> K;
    vector A(N, vi(M));
    rep(i, N) rep(j, M) cin >> A[i][j];

    int di[] = {0, 1, 0, -1};
    int dj[] = {1, 0, -1, 0};

    auto isOK = [&](int x) {
        // 01-BFS
        vector dist(N, vi(M, 1e9));
        deque<pii> dq;
        dq.emplace_back(0, 0);
        dist[0][0] = A[0][0] < x;
        while (!dq.empty()) {
            auto [i, j] = dq.front();
            dq.pop_front();
            rep(k, 4) {
                int ni = i + di[k], nj = j + dj[k];
                if (ni < 0 || ni >= N || nj < 0 || nj >= M) continue;
                int cost = A[ni][nj] < x;
                if (chmin(dist[ni][nj], dist[i][j] + cost)) {
                    if (cost == 0)
                        dq.emplace_front(ni, nj);
                    else
                        dq.emplace_back(ni, nj);
                }
            }
        }
        return dist[N - 1][M - 1] <= K;
    };

    int ok = 0, ng = 1e9 + 1;
    while (abs(ok - ng) > 1) {
        int mid = ok + (ng - ok) / 2;
        if (isOK(mid))
            ok = mid;
        else
            ng = mid;
    }
    cout << ok << endl;

    return 0;
}
0