結果

問題 No.2855 Move on Grid
ユーザー HIcoderHIcoder
提出日時 2024-08-31 00:30:05
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,215 ms / 3,000 ms
コード長 1,886 bytes
コンパイル時間 1,409 ms
コンパイル使用メモリ 128,412 KB
実行使用メモリ 9,388 KB
最終ジャッジ日時 2024-08-31 00:30:39
合計ジャッジ時間 33,024 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 219 ms
6,812 KB
testcase_01 AC 364 ms
6,944 KB
testcase_02 AC 222 ms
6,940 KB
testcase_03 AC 136 ms
6,940 KB
testcase_04 AC 92 ms
6,944 KB
testcase_05 AC 213 ms
6,940 KB
testcase_06 AC 190 ms
6,940 KB
testcase_07 AC 17 ms
6,940 KB
testcase_08 AC 183 ms
6,944 KB
testcase_09 AC 69 ms
6,944 KB
testcase_10 AC 611 ms
6,944 KB
testcase_11 AC 630 ms
6,944 KB
testcase_12 AC 611 ms
6,940 KB
testcase_13 AC 638 ms
6,940 KB
testcase_14 AC 613 ms
6,940 KB
testcase_15 AC 640 ms
6,944 KB
testcase_16 AC 616 ms
6,944 KB
testcase_17 AC 631 ms
6,940 KB
testcase_18 AC 610 ms
6,944 KB
testcase_19 AC 631 ms
6,944 KB
testcase_20 AC 1,024 ms
6,944 KB
testcase_21 AC 1,078 ms
9,388 KB
testcase_22 AC 981 ms
6,944 KB
testcase_23 AC 976 ms
6,940 KB
testcase_24 AC 1,031 ms
6,940 KB
testcase_25 AC 1,146 ms
8,612 KB
testcase_26 AC 982 ms
6,940 KB
testcase_27 AC 1,046 ms
8,612 KB
testcase_28 AC 977 ms
6,940 KB
testcase_29 AC 1,019 ms
6,944 KB
testcase_30 AC 1,122 ms
8,784 KB
testcase_31 AC 1,136 ms
9,260 KB
testcase_32 AC 1,140 ms
9,124 KB
testcase_33 AC 1,149 ms
8,752 KB
testcase_34 AC 1,142 ms
8,612 KB
testcase_35 AC 1,215 ms
8,868 KB
testcase_36 AC 1,022 ms
7,336 KB
testcase_37 AC 1,123 ms
9,256 KB
testcase_38 AC 1,143 ms
8,868 KB
testcase_39 AC 1,126 ms
9,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<string>
#include<queue>
#include<vector>
#include<cassert>
#include<random>
#include<set>
#include<map>
#include<cassert>
#include<unordered_map>
#include<bitset>
#include<numeric>
#include<algorithm>
using namespace std;
typedef long long ll;
const int inf=1<<30;
const ll INF=1LL<<62;
typedef pair<int,ll> P;
typedef pair<int,P> PP; 
const ll MOD=998244353;
const int dy[]={0,1,0,-1};
const int dx[]={1,0,-1,0};

int main(){
    int N,M,K;
    cin>>N>>M>>K;
    vector<vector<int>> A(N,vector<int>(M));
    for(int i=0;i<N;i++){
        for(int j=0;j<M;j++){
            cin>>A[i][j];
        }
    }

    //とおる経路のうち、最小値がx以上となる経路があるか?
    //x未満の数をとおる回数がK回以下であるか?
    auto check=[&](int v){
        
        vector<vector<int>> dp(N,vector<int>(M,inf));

        //上下左右の移動がOK

        priority_queue<PP,vector<PP>,greater<PP>> pq;
        pq.push({(A[0][0]<v?1:0),P(0,0)});

        while(!pq.empty()){
            auto [score,p]=pq.top();
            pq.pop();
            
            auto [y,x]=p;

            if(dp[y][x]<=score) continue;
            //dp[y][x]>score
            dp[y][x]=score;

            for(int k=0;k<4;k++){
                int ny=y+dy[k],nx=x+dx[k];
                if(0<=ny && ny<N && 0<=nx && nx<M){
                    int c=score+(A[ny][nx]<v?1:0);
                    if(dp[ny][nx]>c){
                        pq.push({c,P(ny,nx)});
                    }
                }
            }
        }

        return dp[N-1][M-1]<=K;

    };

    int ub=1000000000+1,lb=0;//lb以上となる経路は達成できる
    while(ub-lb>1){
        int mid=(ub+lb)/2;
        //cout<<"ub:"<<ub<<",lb:"<<lb<<endl;
        if(check(mid)){
            lb=mid;
        }else{
            ub=mid;
        }
    }

    cout<<lb<<endl;

}
0