結果

問題 No.2855 Move on Grid
ユーザー HIcoderHIcoder
提出日時 2024-08-29 23:16:30
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,404 bytes
コンパイル時間 1,545 ms
コンパイル使用メモリ 121,776 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-08-29 23:16:36
合計ジャッジ時間 5,265 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 13 ms
6,940 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 3 ms
6,940 KB
testcase_08 WA -
testcase_09 AC 7 ms
6,944 KB
testcase_10 AC 53 ms
6,940 KB
testcase_11 AC 52 ms
6,940 KB
testcase_12 AC 51 ms
6,944 KB
testcase_13 AC 52 ms
6,944 KB
testcase_14 AC 52 ms
6,940 KB
testcase_15 AC 51 ms
6,940 KB
testcase_16 AC 52 ms
6,940 KB
testcase_17 AC 52 ms
6,940 KB
testcase_18 AC 52 ms
6,944 KB
testcase_19 AC 52 ms
6,940 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 52 ms
6,940 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
権限があれば一括ダウンロードができます

ソースコード

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;


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以上となる経路があるか?
    auto check=[&](int x){
        
        vector<vector<int>> dp(N,vector<int>(M,inf));

        dp[0][0]=(A[0][0]<x?1:0);

        for(int i=0;i<N;i++){
            for(int j=0;j<M;j++){
                if(i+1<N){
                    dp[i+1][j]=min(dp[i+1][j],dp[i][j]+(A[i+1][j]<x));
                }
                
                if(j+1<M){
                    dp[i][j+1]=min(dp[i][j+1],dp[i][j]+(A[i][j+1]<x));
                }
            }
        }

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

    };

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

    cout<<lb<<endl;

}
0