結果

問題 No.2064 Smallest Sequence on Grid
ユーザー qibqib
提出日時 2023-04-28 15:51:27
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 588 bytes
コンパイル時間 227 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 499,584 KB
最終ジャッジ日時 2024-11-17 15:34:24
合計ジャッジ時間 24,077 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
53,248 KB
testcase_01 AC 43 ms
53,376 KB
testcase_02 AC 43 ms
53,120 KB
testcase_03 AC 42 ms
53,632 KB
testcase_04 AC 43 ms
54,016 KB
testcase_05 AC 43 ms
53,376 KB
testcase_06 AC 43 ms
53,632 KB
testcase_07 AC 43 ms
53,376 KB
testcase_08 AC 46 ms
53,888 KB
testcase_09 AC 44 ms
54,272 KB
testcase_10 AC 44 ms
54,272 KB
testcase_11 AC 53 ms
62,208 KB
testcase_12 AC 52 ms
62,080 KB
testcase_13 AC 55 ms
63,616 KB
testcase_14 AC 56 ms
64,384 KB
testcase_15 AC 56 ms
63,616 KB
testcase_16 AC 56 ms
64,000 KB
testcase_17 AC 127 ms
85,236 KB
testcase_18 AC 125 ms
84,480 KB
testcase_19 AC 127 ms
84,864 KB
testcase_20 AC 2,135 ms
383,180 KB
testcase_21 AC 2,304 ms
405,584 KB
testcase_22 AC 1,522 ms
307,968 KB
testcase_23 AC 1,517 ms
292,736 KB
testcase_24 AC 1,522 ms
292,480 KB
testcase_25 AC 1,519 ms
292,480 KB
testcase_26 TLE -
testcase_27 TLE -
testcase_28 AC 129 ms
84,852 KB
testcase_29 AC 2,440 ms
422,400 KB
testcase_30 AC 125 ms
85,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

h, w = map(int, input().split())
s = [input() for _ in range(h)]

dx = [1, 0]
dy = [0, 1]

cands = []
cands.append(set())
cands[0].add((0, 0))
ans = [s[0][0]]
for i in range(h + w - 2):
  c = None
  q = set()
  for cx, cy in cands[-1]:
    for j in range(2):
      nx = cx + dx[j]
      ny = cy + dy[j]
      if nx >= h or ny >= w:
        continue
      if c is None or c > s[nx][ny]:
        c = s[nx][ny]
        q = set()
        q.add((nx, ny))
      elif c == s[nx][ny]:
        q.add((nx, ny))

  cands.append(q)
  ans.append(c)

print(*ans, sep='')
0