結果

問題 No.2855 Move on Grid
ユーザー karinohitokarinohito
提出日時 2024-09-13 09:39:19
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 175 ms / 3,000 ms
コード長 1,354 bytes
コンパイル時間 2,424 ms
コンパイル使用メモリ 218,876 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-13 09:39:29
合計ジャッジ時間 8,818 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
6,816 KB
testcase_01 AC 55 ms
6,812 KB
testcase_02 AC 31 ms
6,940 KB
testcase_03 AC 27 ms
6,944 KB
testcase_04 AC 19 ms
6,944 KB
testcase_05 AC 42 ms
6,944 KB
testcase_06 AC 39 ms
6,940 KB
testcase_07 AC 6 ms
6,940 KB
testcase_08 AC 31 ms
6,940 KB
testcase_09 AC 16 ms
6,944 KB
testcase_10 AC 110 ms
6,940 KB
testcase_11 AC 109 ms
6,940 KB
testcase_12 AC 109 ms
6,944 KB
testcase_13 AC 109 ms
6,940 KB
testcase_14 AC 108 ms
6,940 KB
testcase_15 AC 108 ms
6,940 KB
testcase_16 AC 109 ms
6,944 KB
testcase_17 AC 109 ms
6,944 KB
testcase_18 AC 108 ms
6,940 KB
testcase_19 AC 109 ms
6,944 KB
testcase_20 AC 173 ms
6,940 KB
testcase_21 AC 165 ms
6,940 KB
testcase_22 AC 173 ms
6,944 KB
testcase_23 AC 175 ms
6,940 KB
testcase_24 AC 171 ms
6,944 KB
testcase_25 AC 163 ms
6,940 KB
testcase_26 AC 174 ms
6,940 KB
testcase_27 AC 167 ms
6,944 KB
testcase_28 AC 165 ms
6,944 KB
testcase_29 AC 173 ms
6,944 KB
testcase_30 AC 164 ms
6,944 KB
testcase_31 AC 164 ms
6,940 KB
testcase_32 AC 164 ms
6,944 KB
testcase_33 AC 162 ms
6,944 KB
testcase_34 AC 162 ms
6,940 KB
testcase_35 AC 157 ms
6,940 KB
testcase_36 AC 140 ms
6,940 KB
testcase_37 AC 163 ms
6,940 KB
testcase_38 AC 159 ms
6,940 KB
testcase_39 AC 165 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

vector<int> dx={1,0,-1,0},dy={0,1,0,-1};

int main() {

    cin.tie(nullptr);
    ios::sync_with_stdio(false);

    ll N,M,K;
    cin>>N>>M>>K;
    vector<vector<ll>> A(N,vector<ll>(M));
    for(int i=0;i<N;i++)for(int j=0;j<M;j++)cin>>A[i][j];
    ll L=0,R=1e9+1;
    while(R-L>1){
        ll mid=(R+L)/2;
        vector<vector<ll>> DP(N,vector<ll>(M,1e9));
        deque<pair<ll,pair<int,int>>> PQ;
        DP[0][0]=(A[0][0]<mid);
        PQ.push_back({DP[0][0],{0,0}});
        vector<vector<bool>> seen(N,vector<bool>(M,0));
        while(!PQ.empty()){
            ll c=PQ.front().first;
            ll y=PQ.front().second.first;
            ll x=PQ.front().second.second;
            PQ.pop_front();
            if(seen[y][x])continue;
            seen[y][x]=1;
            for(int d=0;d<4;d++){
                int ny=y+dy[d];
                int nx=x+dx[d];
                if(ny<0||nx<0||ny>=N||nx>=M)continue;
                if(seen[ny][nx])continue;
                ll nc=c+(A[ny][nx]<mid);
                if(DP[ny][nx]<=nc)continue;
                DP[ny][nx]=nc;
                if(nc==c)PQ.push_front({nc,{ny,nx}});
                else PQ.push_back({nc,{ny,nx}});
            }
        }
        if(DP[N-1][M-1]<=K)L=mid;
        else R=mid;
    }
    cout<<L<<endl;
}
0