結果

問題 No.2855 Move on Grid
ユーザー tnakao0123tnakao0123
提出日時 2024-08-29 17:26:45
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 137 ms / 3,000 ms
コード長 1,341 bytes
コンパイル時間 808 ms
コンパイル使用メモリ 60,224 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-08-29 17:26:53
合計ジャッジ時間 6,462 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
6,816 KB
testcase_01 AC 44 ms
6,944 KB
testcase_02 AC 25 ms
6,944 KB
testcase_03 AC 22 ms
6,940 KB
testcase_04 AC 15 ms
6,944 KB
testcase_05 AC 32 ms
6,940 KB
testcase_06 AC 28 ms
6,944 KB
testcase_07 AC 4 ms
6,944 KB
testcase_08 AC 26 ms
6,940 KB
testcase_09 AC 11 ms
6,944 KB
testcase_10 AC 81 ms
6,940 KB
testcase_11 AC 82 ms
6,944 KB
testcase_12 AC 81 ms
6,944 KB
testcase_13 AC 81 ms
6,940 KB
testcase_14 AC 80 ms
6,944 KB
testcase_15 AC 80 ms
6,944 KB
testcase_16 AC 82 ms
6,940 KB
testcase_17 AC 82 ms
6,940 KB
testcase_18 AC 81 ms
6,944 KB
testcase_19 AC 80 ms
6,940 KB
testcase_20 AC 135 ms
6,940 KB
testcase_21 AC 134 ms
6,940 KB
testcase_22 AC 136 ms
6,940 KB
testcase_23 AC 134 ms
6,944 KB
testcase_24 AC 133 ms
6,940 KB
testcase_25 AC 131 ms
6,940 KB
testcase_26 AC 134 ms
6,940 KB
testcase_27 AC 134 ms
6,940 KB
testcase_28 AC 137 ms
6,944 KB
testcase_29 AC 135 ms
6,948 KB
testcase_30 AC 130 ms
6,944 KB
testcase_31 AC 131 ms
6,940 KB
testcase_32 AC 130 ms
6,940 KB
testcase_33 AC 128 ms
6,944 KB
testcase_34 AC 130 ms
6,940 KB
testcase_35 AC 125 ms
6,940 KB
testcase_36 AC 104 ms
6,944 KB
testcase_37 AC 130 ms
6,940 KB
testcase_38 AC 126 ms
6,944 KB
testcase_39 AC 129 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/* -*- coding: utf-8 -*-
 *
 * 2855.cc:  No.2855 Move on Grid - yukicoder
 */

#include<cstdio>
#include<queue>
#include<algorithm>

using namespace std;

/* constant */

const int MAX_N = 300;
const int MAX_M = 300;
const int MAX_NM = MAX_N * MAX_M;
const int MAX_A = 1000000000;
const int dxs[] = {1, 0, -1, 0}, dys[] = {0, -1, 0, 1};

/* typedef */

using qi = queue<int>;

/* global variables */

int as[MAX_NM], ds[MAX_NM];

/* subroutines */

int calc(int n, int m, int x) {
  int nm = n * m;
  fill(ds, ds + nm, -1);
  ds[0] = (as[0] < x) ? 1 : 0;

  qi q0, q1;
  q0.push(0);

  while (! q0.empty()) {
    int u = q0.front(); q0.pop();
    int uy = u / m, ux = u % m;
    for (int di = 0; di < 4; di++) {
      int vy = uy + dys[di], vx = ux + dxs[di], v = vy * m + vx;
      if (vy >= 0 && vy < n && vx >= 0 && vx < m && ds[v] < 0) {
	if (as[v] < x) {
	  ds[v] = ds[u] + 1;
	  q1.push(v);
	}
	else {
	  ds[v] = ds[u];
	  q0.push(v);
	}
      }
    }
    if (q0.empty()) swap(q0, q1);
  }

  return ds[nm - 1];
}

/* main */

int main() {
  int n, m, k;
  scanf("%d%d%d", &n, &m, &k);
  int nm = n * m;
  for (int i = 0; i < nm; i++) scanf("%d", as + i);

  int x0 = 1, x1 = MAX_A + 1;
  while (x0 + 1 < x1) {
    int x = (x0 + x1) / 2;
    if (calc(n, m, x) <= k) x0 = x;
    else x1 = x;
  }

  printf("%d\n", x0);
  
  return 0;
}
0