結果

問題 No.2855 Move on Grid
ユーザー ochiaigawaochiaigawa
提出日時 2024-08-25 14:05:39
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 157 ms / 3,000 ms
コード長 1,564 bytes
コンパイル時間 2,152 ms
コンパイル使用メモリ 214,408 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-08-25 14:05:47
合計ジャッジ時間 6,863 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
6,812 KB
testcase_01 AC 50 ms
6,944 KB
testcase_02 AC 27 ms
6,940 KB
testcase_03 AC 24 ms
6,944 KB
testcase_04 AC 18 ms
6,940 KB
testcase_05 AC 36 ms
6,940 KB
testcase_06 AC 31 ms
6,940 KB
testcase_07 AC 5 ms
6,944 KB
testcase_08 AC 28 ms
6,940 KB
testcase_09 AC 12 ms
6,944 KB
testcase_10 AC 12 ms
6,940 KB
testcase_11 AC 11 ms
6,944 KB
testcase_12 AC 12 ms
6,940 KB
testcase_13 AC 12 ms
6,944 KB
testcase_14 AC 12 ms
6,940 KB
testcase_15 AC 12 ms
6,940 KB
testcase_16 AC 11 ms
6,940 KB
testcase_17 AC 11 ms
6,940 KB
testcase_18 AC 12 ms
6,948 KB
testcase_19 AC 12 ms
6,940 KB
testcase_20 AC 155 ms
6,944 KB
testcase_21 AC 150 ms
6,940 KB
testcase_22 AC 151 ms
6,944 KB
testcase_23 AC 150 ms
6,944 KB
testcase_24 AC 146 ms
6,940 KB
testcase_25 AC 157 ms
6,944 KB
testcase_26 AC 151 ms
6,940 KB
testcase_27 AC 151 ms
6,940 KB
testcase_28 AC 153 ms
6,940 KB
testcase_29 AC 151 ms
6,940 KB
testcase_30 AC 147 ms
6,940 KB
testcase_31 AC 149 ms
6,944 KB
testcase_32 AC 150 ms
6,940 KB
testcase_33 AC 145 ms
6,944 KB
testcase_34 AC 147 ms
6,944 KB
testcase_35 AC 139 ms
6,944 KB
testcase_36 AC 119 ms
6,940 KB
testcase_37 AC 149 ms
6,940 KB
testcase_38 AC 144 ms
6,940 KB
testcase_39 AC 151 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#pragma GCC optimize("Ofast")
#pragma GCC optimize("unroll-loops")
using namespace std;
const int MAX = 1000000000;
int di[4] = {-1, 0, 1, 0};
int dj[4] = {0, -1, 0, 1};
int main() {
  cin.tie(0); cout.tie(0);
  ios::sync_with_stdio(false);
  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];
    }
  }
  if(K >= N + M - 1) {
    cout << MAX << '\n';
  } else {
    int ok = 1, ng = MAX + 1;
    while(ng - ok > 1) {
      int mid = (ok + ng) >> 1;
      vector<vector<int>> dp(N, vector<int>(M, MAX));
      dp[0][0] = A[0][0] < mid;
      deque<pair<int, int>> deq;
      deq.push_back(make_pair(0, 0));
      while(!deq.empty()) {
        int i = deq.front().first;
        int j = deq.front().second;
        deq.pop_front();
        for(int k = 0; k < 4; k++) {
          int ni = i + di[k];
          int nj = j + dj[k];
          if(ni < 0 || ni >= N || nj < 0 || nj >= M) {
            continue;
          }
          if(A[ni][nj] < mid) {
            if(dp[ni][nj] > dp[i][j] + 1) {
              dp[ni][nj] = dp[i][j] + 1;
              deq.push_back(make_pair(ni, nj));
            }
          } else {
            if(dp[ni][nj] > dp[i][j]) {
              dp[ni][nj] = dp[i][j];
              deq.push_front(make_pair(ni, nj));
            }
          }
        }
      }
      if(dp.back().back() <= K) {
        ok = mid;
      } else {
        ng = mid;
      }
    }
    cout << ok << '\n';
  }
  return 0;
}
0