結果

問題 No.2855 Move on Grid
ユーザー MMMM
提出日時 2024-08-25 14:02:40
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 191 ms / 3,000 ms
コード長 1,416 bytes
コンパイル時間 6,552 ms
コンパイル使用メモリ 338,812 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-08-25 14:02:53
合計ジャッジ時間 11,989 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
6,816 KB
testcase_01 AC 58 ms
6,940 KB
testcase_02 AC 24 ms
6,940 KB
testcase_03 AC 29 ms
6,940 KB
testcase_04 AC 19 ms
6,944 KB
testcase_05 AC 43 ms
6,940 KB
testcase_06 AC 38 ms
6,944 KB
testcase_07 AC 6 ms
6,940 KB
testcase_08 AC 34 ms
6,940 KB
testcase_09 AC 16 ms
6,944 KB
testcase_10 AC 104 ms
6,940 KB
testcase_11 AC 102 ms
6,940 KB
testcase_12 AC 100 ms
6,940 KB
testcase_13 AC 103 ms
6,940 KB
testcase_14 AC 102 ms
6,940 KB
testcase_15 AC 100 ms
6,944 KB
testcase_16 AC 104 ms
6,944 KB
testcase_17 AC 106 ms
6,944 KB
testcase_18 AC 106 ms
6,940 KB
testcase_19 AC 105 ms
6,940 KB
testcase_20 AC 179 ms
6,944 KB
testcase_21 AC 191 ms
6,944 KB
testcase_22 AC 180 ms
6,944 KB
testcase_23 AC 175 ms
6,944 KB
testcase_24 AC 170 ms
6,940 KB
testcase_25 AC 171 ms
6,940 KB
testcase_26 AC 175 ms
6,940 KB
testcase_27 AC 172 ms
6,940 KB
testcase_28 AC 178 ms
6,944 KB
testcase_29 AC 182 ms
6,940 KB
testcase_30 AC 171 ms
6,944 KB
testcase_31 AC 153 ms
6,940 KB
testcase_32 AC 181 ms
6,940 KB
testcase_33 AC 161 ms
6,940 KB
testcase_34 AC 163 ms
6,940 KB
testcase_35 AC 162 ms
6,940 KB
testcase_36 AC 91 ms
6,940 KB
testcase_37 AC 167 ms
6,940 KB
testcase_38 AC 170 ms
6,944 KB
testcase_39 AC 166 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#include<atcoder/all>
#define chmin(x,y) (x) = min((x),(y))
#define chmax(x,y) (x) = max((x),(y))
using namespace std;
using namespace atcoder;
using ll = long long;
const ll mod = 998244353;
using mint = modint998244353;
using Graph = vector<vector<int>>;

const vector<int> dx = {1,0,-1,0}, dy = {0,1,0,-1};

int main(){
  // input
  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];
      
  // solve
  int lo = 1, hi = 1e9+1;
  while(hi - lo > 1){
    int mid = (lo + hi) / 2;
    
    deque<tuple<int,int,int>> d;
    d.emplace_back(0,0,int(mid > A[0][0]));
    
    vector<vector<int>> seen(N,vector<int>(M,1e9));
    
    while(true){
      auto[x,y,now] = d.front();
      d.pop_front();
      
      if(x+1 == N && y+1 == M) break;
      
      for(int i = 0; i < 4; i++){
        int nx = x + dx[i], ny = y + dy[i];
        if(nx < 0 || ny < 0 || nx == N || ny == M) continue;
        
        if(A[nx][ny] >= mid && seen[nx][ny] > now){
          d.emplace_front(nx,ny,now);
          seen[nx][ny] = now;
        }
        else if(A[nx][ny] < mid && seen[nx][ny] > now + 1){
          d.emplace_back(nx,ny,now+1);
          seen[nx][ny] = now + 1;
        }
      }
    }
    
    if(seen[N-1][M-1] <= K) lo = mid; else hi = mid;
  }
  
  
  // output
  cout << lo << endl;
}
0