結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
5,248 KB
testcase_01 AC 42 ms
5,504 KB
testcase_02 AC 25 ms
5,376 KB
testcase_03 AC 19 ms
5,376 KB
testcase_04 AC 14 ms
5,376 KB
testcase_05 AC 31 ms
5,376 KB
testcase_06 AC 29 ms
5,376 KB
testcase_07 AC 4 ms
5,376 KB
testcase_08 AC 23 ms
5,376 KB
testcase_09 AC 12 ms
5,376 KB
testcase_10 AC 114 ms
9,644 KB
testcase_11 AC 113 ms
9,644 KB
testcase_12 AC 115 ms
9,512 KB
testcase_13 AC 114 ms
9,516 KB
testcase_14 AC 116 ms
9,648 KB
testcase_15 AC 117 ms
9,520 KB
testcase_16 AC 115 ms
9,688 KB
testcase_17 AC 114 ms
9,640 KB
testcase_18 AC 115 ms
9,520 KB
testcase_19 AC 115 ms
9,644 KB
testcase_20 AC 153 ms
9,728 KB
testcase_21 AC 148 ms
10,160 KB
testcase_22 AC 147 ms
9,644 KB
testcase_23 AC 153 ms
9,772 KB
testcase_24 AC 151 ms
9,648 KB
testcase_25 AC 145 ms
10,160 KB
testcase_26 AC 153 ms
9,648 KB
testcase_27 AC 147 ms
10,028 KB
testcase_28 AC 152 ms
9,644 KB
testcase_29 AC 145 ms
9,644 KB
testcase_30 AC 147 ms
10,028 KB
testcase_31 AC 144 ms
10,032 KB
testcase_32 AC 142 ms
10,160 KB
testcase_33 AC 140 ms
10,156 KB
testcase_34 AC 140 ms
10,032 KB
testcase_35 AC 137 ms
10,032 KB
testcase_36 AC 128 ms
10,284 KB
testcase_37 AC 148 ms
10,156 KB
testcase_38 AC 147 ms
10,280 KB
testcase_39 AC 151 ms
10,156 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));
    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<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=md;
        else R=md;
    }
    cout<<V[L]<<endl;
}
0