結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
55,184 KB
testcase_01 AC 41 ms
55,436 KB
testcase_02 AC 42 ms
54,384 KB
testcase_03 AC 41 ms
55,656 KB
testcase_04 AC 42 ms
54,248 KB
testcase_05 AC 41 ms
55,764 KB
testcase_06 AC 40 ms
55,152 KB
testcase_07 AC 41 ms
54,744 KB
testcase_08 AC 42 ms
55,936 KB
testcase_09 AC 42 ms
55,172 KB
testcase_10 AC 43 ms
54,836 KB
testcase_11 AC 49 ms
63,052 KB
testcase_12 AC 50 ms
63,452 KB
testcase_13 AC 53 ms
64,948 KB
testcase_14 AC 53 ms
66,368 KB
testcase_15 AC 52 ms
64,472 KB
testcase_16 AC 53 ms
64,648 KB
testcase_17 AC 121 ms
84,788 KB
testcase_18 AC 121 ms
84,976 KB
testcase_19 AC 121 ms
85,024 KB
testcase_20 AC 2,098 ms
383,024 KB
testcase_21 AC 2,309 ms
405,864 KB
testcase_22 AC 1,457 ms
307,944 KB
testcase_23 AC 1,466 ms
293,172 KB
testcase_24 AC 1,458 ms
292,932 KB
testcase_25 AC 1,469 ms
292,884 KB
testcase_26 AC 2,969 ms
499,288 KB
testcase_27 TLE -
testcase_28 AC 126 ms
85,000 KB
testcase_29 AC 2,485 ms
422,992 KB
testcase_30 AC 124 ms
84,888 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