結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
5,248 KB
testcase_01 AC 181 ms
5,376 KB
testcase_02 AC 108 ms
5,376 KB
testcase_03 AC 76 ms
5,376 KB
testcase_04 AC 53 ms
5,376 KB
testcase_05 AC 116 ms
5,376 KB
testcase_06 AC 102 ms
5,376 KB
testcase_07 AC 11 ms
5,376 KB
testcase_08 AC 99 ms
5,376 KB
testcase_09 AC 38 ms
5,376 KB
testcase_10 AC 343 ms
5,376 KB
testcase_11 AC 324 ms
5,376 KB
testcase_12 AC 323 ms
6,944 KB
testcase_13 AC 321 ms
6,944 KB
testcase_14 AC 334 ms
6,940 KB
testcase_15 AC 320 ms
6,940 KB
testcase_16 AC 321 ms
6,944 KB
testcase_17 AC 321 ms
6,940 KB
testcase_18 AC 343 ms
6,940 KB
testcase_19 AC 319 ms
6,940 KB
testcase_20 AC 547 ms
6,940 KB
testcase_21 AC 586 ms
6,944 KB
testcase_22 AC 541 ms
6,944 KB
testcase_23 AC 524 ms
6,944 KB
testcase_24 AC 571 ms
6,944 KB
testcase_25 AC 607 ms
6,940 KB
testcase_26 AC 544 ms
6,944 KB
testcase_27 AC 580 ms
6,944 KB
testcase_28 AC 545 ms
6,940 KB
testcase_29 AC 559 ms
6,940 KB
testcase_30 AC 596 ms
6,944 KB
testcase_31 AC 602 ms
6,940 KB
testcase_32 AC 634 ms
6,940 KB
testcase_33 AC 632 ms
6,944 KB
testcase_34 AC 592 ms
6,940 KB
testcase_35 AC 613 ms
6,944 KB
testcase_36 AC 517 ms
6,940 KB
testcase_37 AC 611 ms
6,940 KB
testcase_38 AC 627 ms
6,944 KB
testcase_39 AC 606 ms
6,940 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));
        priority_queue<pair<ll,pair<int,int>>,vector<pair<ll,pair<int,int>>>,greater<pair<ll,pair<int,int>>>> PQ;
        DP[0][0]=(A[0][0]<mid);
        PQ.push({DP[0][0],{0,0}});
        vector<vector<bool>> seen(N,vector<bool>(M,0));
        while(!PQ.empty()){
            ll c=PQ.top().first;
            ll y=PQ.top().second.first;
            ll x=PQ.top().second.second;
            PQ.pop();
            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;
                PQ.push({nc,{ny,nx}});
            }
        }
        if(DP[N-1][M-1]<=K)L=mid;
        else R=mid;
    }
    cout<<L<<endl;
}
0