結果

問題 No.2855 Move on Grid
ユーザー maeshunmaeshun
提出日時 2024-08-27 05:16:19
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 188 ms / 3,000 ms
コード長 1,767 bytes
コンパイル時間 4,511 ms
コンパイル使用メモリ 270,528 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-08-27 05:16:31
合計ジャッジ時間 11,326 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
6,812 KB
testcase_01 AC 62 ms
6,812 KB
testcase_02 AC 33 ms
6,944 KB
testcase_03 AC 28 ms
6,944 KB
testcase_04 AC 19 ms
6,944 KB
testcase_05 AC 42 ms
6,944 KB
testcase_06 AC 38 ms
6,944 KB
testcase_07 AC 5 ms
6,944 KB
testcase_08 AC 33 ms
6,944 KB
testcase_09 AC 15 ms
6,944 KB
testcase_10 AC 97 ms
6,944 KB
testcase_11 AC 101 ms
6,940 KB
testcase_12 AC 98 ms
6,940 KB
testcase_13 AC 101 ms
6,944 KB
testcase_14 AC 101 ms
6,940 KB
testcase_15 AC 99 ms
6,940 KB
testcase_16 AC 102 ms
6,940 KB
testcase_17 AC 100 ms
6,944 KB
testcase_18 AC 101 ms
6,944 KB
testcase_19 AC 101 ms
6,940 KB
testcase_20 AC 185 ms
6,940 KB
testcase_21 AC 185 ms
6,940 KB
testcase_22 AC 182 ms
6,944 KB
testcase_23 AC 178 ms
6,940 KB
testcase_24 AC 181 ms
6,940 KB
testcase_25 AC 182 ms
6,940 KB
testcase_26 AC 178 ms
6,944 KB
testcase_27 AC 188 ms
6,944 KB
testcase_28 AC 178 ms
6,940 KB
testcase_29 AC 180 ms
6,940 KB
testcase_30 AC 180 ms
6,944 KB
testcase_31 AC 183 ms
6,944 KB
testcase_32 AC 179 ms
6,940 KB
testcase_33 AC 182 ms
6,944 KB
testcase_34 AC 178 ms
6,940 KB
testcase_35 AC 171 ms
6,944 KB
testcase_36 AC 149 ms
6,940 KB
testcase_37 AC 176 ms
6,940 KB
testcase_38 AC 174 ms
6,944 KB
testcase_39 AC 175 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
#define rep(i, n) for(int i=0;i<(n);++i)
#define rep1(i, n) for(int i=1;i<=(n);i++)
#define ll long long
using mint = modint998244353;
using P = pair<ll,ll>;
using lb = long double;
using T = tuple<ll, ll, ll>;
#ifdef LOCAL
#  include <debug_print.hpp>
#  define dbg(...) debug_print::multi_print(#__VA_ARGS__, __VA_ARGS__)
#else
#  define dbg(...) (static_cast<void>(0))
#endif

int main()
{
    int n, m, k;
    cin >> n >> m >> k;
    vector<vector<int>> a(n, vector<int>(m));
    rep(i,n)rep(j,m) cin >> a[i][j];
    ll low = 0;
    ll high = 2e9;
    vector<int> dx = {1, 0, -1, 0};
    vector<int> dy = {0, 1, 0, -1};
    while(high-low>1) {
        ll mid = (high+low)/2;
        vector<vector<ll>> dp(n+1, vector<ll>(m+1, n+m));
        if(a[0][0]<mid) dp[0][0] = 1;
        else dp[0][0] = 0;
        deque<P> q;
        q.emplace_back(0, 0);
        while(!q.empty()) {
            auto [x, y] = q.front();q.pop_front();
            rep(d, 4) {
                int nx = x + dx[d];
                int ny = y + dy[d];
                if(nx<0 || nx>=n || ny<0 || ny>=m) continue;
                if(a[nx][ny]<mid) {
                    if(dp[nx][ny]>dp[x][y]+1) {
                        q.emplace_back(nx,ny);
                        dp[nx][ny] = dp[x][y] + 1;
                    }
                }
                else{
                    if(dp[nx][ny]>dp[x][y]) {
                        q.emplace_front(nx, ny);
                        dp[nx][ny] = dp[x][y];
                    }
                }
           }           
        }
        if(dp[n-1][m-1]<=k) low = mid;
        else high = mid; 
    }
    cout << min(low, (ll)1e9) << endl;
    return 0;
}
0