結果

問題 No.2855 Move on Grid
ユーザー テナガザルテナガザル
提出日時 2024-08-25 14:01:03
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 127 ms / 3,000 ms
コード長 1,119 bytes
コンパイル時間 1,069 ms
コンパイル使用メモリ 111,740 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-08-25 14:01:10
合計ジャッジ時間 5,829 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
6,816 KB
testcase_01 AC 39 ms
6,940 KB
testcase_02 AC 26 ms
6,940 KB
testcase_03 AC 19 ms
6,944 KB
testcase_04 AC 14 ms
6,944 KB
testcase_05 AC 28 ms
6,944 KB
testcase_06 AC 28 ms
6,944 KB
testcase_07 AC 4 ms
6,940 KB
testcase_08 AC 23 ms
6,944 KB
testcase_09 AC 11 ms
6,940 KB
testcase_10 AC 79 ms
6,940 KB
testcase_11 AC 80 ms
6,940 KB
testcase_12 AC 85 ms
6,944 KB
testcase_13 AC 82 ms
6,944 KB
testcase_14 AC 83 ms
6,940 KB
testcase_15 AC 83 ms
6,944 KB
testcase_16 AC 84 ms
6,944 KB
testcase_17 AC 84 ms
6,940 KB
testcase_18 AC 81 ms
6,944 KB
testcase_19 AC 84 ms
6,940 KB
testcase_20 AC 122 ms
6,944 KB
testcase_21 AC 117 ms
6,944 KB
testcase_22 AC 123 ms
6,944 KB
testcase_23 AC 120 ms
6,944 KB
testcase_24 AC 118 ms
6,944 KB
testcase_25 AC 118 ms
6,944 KB
testcase_26 AC 118 ms
6,944 KB
testcase_27 AC 120 ms
6,940 KB
testcase_28 AC 123 ms
6,944 KB
testcase_29 AC 116 ms
6,944 KB
testcase_30 AC 124 ms
6,940 KB
testcase_31 AC 119 ms
6,944 KB
testcase_32 AC 120 ms
6,944 KB
testcase_33 AC 118 ms
6,944 KB
testcase_34 AC 121 ms
6,944 KB
testcase_35 AC 117 ms
6,940 KB
testcase_36 AC 107 ms
6,944 KB
testcase_37 AC 127 ms
6,944 KB
testcase_38 AC 118 ms
6,944 KB
testcase_39 AC 119 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <queue>
#include <algorithm>

using namespace std;

int main()
{
  const int inf = (1LL << 30);
  int n, m, k;
  cin >> n >> m >> k;
  const int dx[] = {0, 1, 0, -1}, dy[] = {1, 0, -1, 0};
  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];
  int l = 1, r = 1e9 + 1;
  while (r - l > 1)
  {
    int mid = (l + r) / 2;
    deque<pair<int, int>> dq;
    vector<vector<int>> dis(n, vector<int> (m, inf));
    dis[0][0] = (a[0][0] < mid);
    for (dq.push_front({0, 0}); !dq.empty();)
    {
      auto [x, y] = dq.front();
      dq.pop_front();
      for (int i = 0; i < 4; ++i)
      {
        unsigned nx = x + dx[i], ny = y + dy[i];
        if (nx >= n || ny >= m || dis[nx][ny] != inf) continue;
        if (a[nx][ny] < mid)
        {
          dis[nx][ny] = dis[x][y] + 1;
          dq.push_back({nx, ny});
        }
        else
        {
          dis[nx][ny] = dis[x][y];
          dq.push_front({nx, ny});
        }
      }
    }
    (dis[n - 1][m - 1] <= k ? l : r) = mid;
  }
  cout << l << endl;
}
0