結果

問題 No.2855 Move on Grid
ユーザー karinohitokarinohito
提出日時 2024-09-13 09:44:06
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 151 ms / 3,000 ms
コード長 1,516 bytes
コンパイル時間 2,719 ms
コンパイル使用メモリ 223,212 KB
実行使用メモリ 9,040 KB
最終ジャッジ日時 2024-09-13 09:44:15
合計ジャッジ時間 8,578 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
6,812 KB
testcase_01 AC 41 ms
6,940 KB
testcase_02 AC 25 ms
6,944 KB
testcase_03 AC 19 ms
6,944 KB
testcase_04 AC 14 ms
6,940 KB
testcase_05 AC 30 ms
6,940 KB
testcase_06 AC 29 ms
6,944 KB
testcase_07 AC 4 ms
6,944 KB
testcase_08 AC 22 ms
6,944 KB
testcase_09 AC 12 ms
6,940 KB
testcase_10 AC 111 ms
8,524 KB
testcase_11 AC 110 ms
8,652 KB
testcase_12 AC 112 ms
8,652 KB
testcase_13 AC 111 ms
8,780 KB
testcase_14 AC 111 ms
8,648 KB
testcase_15 AC 112 ms
8,648 KB
testcase_16 AC 121 ms
8,652 KB
testcase_17 AC 110 ms
8,652 KB
testcase_18 AC 109 ms
8,652 KB
testcase_19 AC 110 ms
8,652 KB
testcase_20 AC 150 ms
8,652 KB
testcase_21 AC 143 ms
8,932 KB
testcase_22 AC 142 ms
8,652 KB
testcase_23 AC 149 ms
8,652 KB
testcase_24 AC 150 ms
8,656 KB
testcase_25 AC 142 ms
8,936 KB
testcase_26 AC 151 ms
8,652 KB
testcase_27 AC 145 ms
9,040 KB
testcase_28 AC 151 ms
8,528 KB
testcase_29 AC 142 ms
8,652 KB
testcase_30 AC 143 ms
9,036 KB
testcase_31 AC 136 ms
8,928 KB
testcase_32 AC 148 ms
9,036 KB
testcase_33 AC 138 ms
8,800 KB
testcase_34 AC 138 ms
9,032 KB
testcase_35 AC 136 ms
9,032 KB
testcase_36 AC 124 ms
9,032 KB
testcase_37 AC 145 ms
9,036 KB
testcase_38 AC 139 ms
9,036 KB
testcase_39 AC 148 ms
8,908 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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));
    set<ll> S;
    S.insert(1e9);
    for(int i=0;i<N;i++)for(int j=0;j<M;j++){
        cin>>A[i][j];
        S.insert(A[i][j]);
    }
    vector<ll> V;
    for(auto s:S)V.push_back(s);
    ll VN=V.size();
    ll L=0,R=VN;
    while(R-L>1){
        ll md=(R+L)/2;
        ll mid=V[md];
        vector<vector<int>> 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=md;
        else R=md;
    }
    cout<<V[L]<<endl;
}
0