結果

問題 No.2064 Smallest Sequence on Grid
ユーザー 👑 obakyanobakyan
提出日時 2022-10-13 12:51:34
言語 Lua
(LuaJit 2.1.1696795921)
結果
AC  
実行時間 1,508 ms / 3,000 ms
コード長 890 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 5,504 KB
実行使用メモリ 241,408 KB
最終ジャッジ日時 2024-06-26 11:59:00
合計ジャッジ時間 16,637 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 3 ms
5,376 KB
testcase_11 AC 4 ms
5,376 KB
testcase_12 AC 3 ms
5,376 KB
testcase_13 AC 4 ms
5,376 KB
testcase_14 AC 3 ms
5,376 KB
testcase_15 AC 4 ms
5,376 KB
testcase_16 AC 4 ms
5,376 KB
testcase_17 AC 506 ms
118,784 KB
testcase_18 AC 511 ms
118,784 KB
testcase_19 AC 500 ms
118,400 KB
testcase_20 AC 1,441 ms
234,880 KB
testcase_21 AC 1,458 ms
241,408 KB
testcase_22 AC 1,401 ms
226,688 KB
testcase_23 AC 895 ms
174,464 KB
testcase_24 AC 896 ms
174,464 KB
testcase_25 AC 896 ms
174,464 KB
testcase_26 AC 1,506 ms
238,592 KB
testcase_27 AC 1,508 ms
239,232 KB
testcase_28 AC 438 ms
121,600 KB
testcase_29 AC 1,402 ms
230,784 KB
testcase_30 AC 473 ms
111,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

local h, w = io.read("*n", "*n", "*l")
local t = {}
for i = 1, h do
  local s = io.read()
  t[i] = {}
  for j = 1, w do
    t[i][j] = s:sub(j, j)
  end
end
local ret = {}
local last = t[1][1]
local pos = {}
pos[1] = true
ret[1] = last
for len = 2, h + w - 1 do
  local nxt = "~"
  for i = 1, h do
    if pos[i] then
      local j = len - i
      if j < w and t[i][j + 1] < nxt then
        nxt = t[i][j + 1]
      end
      if i < h and t[i + 1][j] < nxt then
        nxt = t[i + 1][j]
      end
    end
  end
  local tmp = {}
  for i = h, 1, -1 do
    if pos[i] then
      local j = len - i
      if j < w and t[i][j + 1] == nxt then
        tmp[i] = true
      end
      if i < h and t[i + 1][j] == nxt then
        tmp[i + 1] = true
      end
    end
  end
  pos = {}
  for k, v in pairs(tmp) do
    pos[k] = true
  end
  table.insert(ret, nxt)
  last = nxt
end
print(table.concat(ret))
0