結果

問題 No.2855 Move on Grid
ユーザー umezoumezo
提出日時 2024-08-25 14:20:04
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,511 bytes
コンパイル時間 3,262 ms
コンパイル使用メモリ 257,576 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-08-25 14:21:28
合計ジャッジ時間 72,299 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 379 ms
6,812 KB
testcase_01 AC 1,090 ms
6,944 KB
testcase_02 AC 85 ms
6,940 KB
testcase_03 AC 331 ms
6,944 KB
testcase_04 AC 289 ms
6,944 KB
testcase_05 AC 309 ms
6,940 KB
testcase_06 AC 144 ms
6,944 KB
testcase_07 AC 9 ms
6,940 KB
testcase_08 AC 659 ms
6,944 KB
testcase_09 AC 30 ms
6,940 KB
testcase_10 AC 279 ms
6,944 KB
testcase_11 AC 239 ms
6,944 KB
testcase_12 AC 257 ms
6,940 KB
testcase_13 AC 245 ms
6,940 KB
testcase_14 AC 247 ms
6,940 KB
testcase_15 AC 265 ms
6,944 KB
testcase_16 AC 248 ms
6,944 KB
testcase_17 AC 245 ms
6,944 KB
testcase_18 AC 248 ms
6,944 KB
testcase_19 AC 242 ms
6,944 KB
testcase_20 AC 2,836 ms
6,940 KB
testcase_21 TLE -
testcase_22 AC 2,963 ms
6,944 KB
testcase_23 AC 2,558 ms
6,940 KB
testcase_24 AC 2,997 ms
6,948 KB
testcase_25 TLE -
testcase_26 AC 2,577 ms
6,940 KB
testcase_27 TLE -
testcase_28 TLE -
testcase_29 AC 2,907 ms
6,944 KB
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 AC 2,630 ms
6,944 KB
testcase_36 AC 715 ms
6,940 KB
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define ALL(v) v.begin(),v.end()
typedef long long ll;
template <class T> using V=vector<T>;
template <class T> using VV=V<V<T>>;

int dh[]={1,0,-1,0};
int dw[]={0,1,0,-1};
 
int main(){
  ios::sync_with_stdio(false);
  std::cin.tie(nullptr);
  
  ll n,m,k;
  cin>>n>>m>>k;
  VV<ll> A(n,V<ll>(m));
  rep(i,n) rep(j,m) cin>>A[i][j];
  
  ll ok=0,ng=1e9+1;
  while(ng-ok>1){
    ll mid=(ok+ng)/2;
    VV<ll> B(n,V<ll>(m)),dis(n,V<ll>(m,-1));
    rep(i,n) rep(j,m){
      if(A[i][j]<mid) B[i][j]=1;
    }
    dis[0][0]=0;
    if(B[0][0]) dis[0][0]=1;
    queue<pair<int,int>> que;
    que.push({0,0});
    while(que.size()){
      auto a=que.front(); que.pop();
      int i=a.first,j=a.second;
      rep(k,4){
        int ni=i+dh[k],nj=j+dw[k];
        if(ni<0 || nj<0 || ni>=n || nj>=m) continue;
        if(B[ni][nj]){
          if(dis[ni][nj]==-1){
            dis[ni][nj]=dis[i][j]+1;
            que.push({ni,nj});
          }
          else if(dis[ni][nj]>dis[i][j]+1){
            dis[ni][nj]=dis[i][j]+1;
            que.push({ni,nj});
          }
        }
        else{
          if(dis[ni][nj]==-1){
            dis[ni][nj]=dis[i][j];
            que.push({ni,nj});
          }
          else if(dis[ni][nj]>dis[i][j]){
            dis[ni][nj]=dis[i][j];
            que.push({ni,nj});
          }
        }
      }
    }
    if(dis[n-1][m-1]<=k) ok=mid;
    else ng=mid;
  }
  cout<<ok<<endl;
    
  return 0;
}
0