結果

問題 No.2855 Move on Grid
ユーザー tomeruntomerun
提出日時 2024-08-25 13:58:55
言語 Crystal
(1.11.2)
結果
AC  
実行時間 156 ms / 3,000 ms
コード長 797 bytes
コンパイル時間 12,279 ms
コンパイル使用メモリ 297,344 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-08-25 13:59:38
合計ジャッジ時間 18,189 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
6,812 KB
testcase_01 AC 51 ms
6,940 KB
testcase_02 AC 31 ms
6,944 KB
testcase_03 AC 25 ms
6,944 KB
testcase_04 AC 19 ms
6,940 KB
testcase_05 AC 37 ms
6,944 KB
testcase_06 AC 38 ms
6,944 KB
testcase_07 AC 6 ms
6,944 KB
testcase_08 AC 29 ms
6,940 KB
testcase_09 AC 16 ms
6,944 KB
testcase_10 AC 105 ms
6,940 KB
testcase_11 AC 105 ms
6,940 KB
testcase_12 AC 105 ms
6,944 KB
testcase_13 AC 104 ms
6,944 KB
testcase_14 AC 104 ms
6,944 KB
testcase_15 AC 104 ms
6,944 KB
testcase_16 AC 105 ms
6,944 KB
testcase_17 AC 104 ms
6,944 KB
testcase_18 AC 106 ms
6,940 KB
testcase_19 AC 105 ms
6,940 KB
testcase_20 AC 156 ms
6,944 KB
testcase_21 AC 151 ms
6,944 KB
testcase_22 AC 154 ms
6,940 KB
testcase_23 AC 156 ms
6,940 KB
testcase_24 AC 150 ms
6,940 KB
testcase_25 AC 146 ms
6,944 KB
testcase_26 AC 154 ms
6,940 KB
testcase_27 AC 153 ms
6,940 KB
testcase_28 AC 156 ms
6,944 KB
testcase_29 AC 155 ms
6,944 KB
testcase_30 AC 148 ms
6,944 KB
testcase_31 AC 145 ms
6,940 KB
testcase_32 AC 147 ms
6,940 KB
testcase_33 AC 145 ms
6,944 KB
testcase_34 AC 147 ms
6,940 KB
testcase_35 AC 141 ms
6,940 KB
testcase_36 AC 129 ms
6,940 KB
testcase_37 AC 147 ms
6,940 KB
testcase_38 AC 145 ms
6,940 KB
testcase_39 AC 148 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

DY = [1, 0, -1, 0]
DX = [0, 1, 0, -1]
n, m, k = read_line.split.map(&.to_i)
a = Array.new(n) { read_line.split.map(&.to_i) }
lo = 1
hi = 1_000_000_001
while hi - lo > 1
  mid = (lo + hi) // 2
  if count(a, mid) <= k
    lo = mid
  else
    hi = mid
  end
end
puts lo

def count(a, v)
  h = a.size
  w = a[0].size
  q = Deque(Tuple(Int32, Int32)).new
  c = Array.new(h) { Array.new(w, -1) }
  c[0][0] = a[0][0] < v ? 1 : 0
  q << {0, 0}
  while !q.empty?
    y, x = q.shift
    4.times do |d|
      ny = y + DY[d]
      nx = x + DX[d]
      if 0 <= ny < h && 0 <= nx < w && c[ny][nx] == -1
        if a[ny][nx] < v
          c[ny][nx] = c[y][x] + 1
          q << {ny, nx}
        else
          c[ny][nx] = c[y][x]
          q.unshift({ny, nx})
        end
      end
    end
  end
  c[-1][-1]
end
0