結果

問題 No.2855 Move on Grid
ユーザー umezoumezo
提出日時 2024-08-25 14:25:37
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,519 bytes
コンパイル時間 3,113 ms
コンパイル使用メモリ 255,684 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-08-25 14:26:55
合計ジャッジ時間 71,884 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 396 ms
6,816 KB
testcase_01 AC 1,067 ms
6,940 KB
testcase_02 AC 93 ms
6,940 KB
testcase_03 AC 340 ms
6,940 KB
testcase_04 AC 292 ms
6,940 KB
testcase_05 AC 296 ms
6,940 KB
testcase_06 AC 146 ms
6,940 KB
testcase_07 AC 9 ms
6,944 KB
testcase_08 AC 727 ms
6,940 KB
testcase_09 AC 32 ms
6,940 KB
testcase_10 AC 252 ms
6,940 KB
testcase_11 AC 254 ms
6,944 KB
testcase_12 AC 248 ms
6,944 KB
testcase_13 AC 242 ms
6,940 KB
testcase_14 AC 233 ms
6,944 KB
testcase_15 AC 247 ms
6,940 KB
testcase_16 AC 269 ms
6,944 KB
testcase_17 AC 244 ms
6,940 KB
testcase_18 AC 246 ms
6,948 KB
testcase_19 AC 241 ms
6,940 KB
testcase_20 AC 2,827 ms
6,940 KB
testcase_21 TLE -
testcase_22 TLE -
testcase_23 AC 2,576 ms
6,944 KB
testcase_24 AC 2,931 ms
6,940 KB
testcase_25 TLE -
testcase_26 AC 2,551 ms
6,944 KB
testcase_27 TLE -
testcase_28 TLE -
testcase_29 AC 2,908 ms
6,940 KB
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 AC 2,632 ms
6,944 KB
testcase_36 AC 716 ms
6,944 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);
  
  int n,m,k;
  cin>>n>>m>>k;
  VV<int> A(n,V<int>(m));
  rep(i,n) rep(j,m) cin>>A[i][j];
  
  int ok=0,ng=1e9+1;
  while(ng-ok>1){
    int mid=(ok+ng)/2;
    VV<int> B(n,V<int>(m)),dis(n,V<int>(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