結果

問題 No.2064 Smallest Sequence on Grid
ユーザー とりゐとりゐ
提出日時 2022-08-27 11:38:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,650 ms / 3,000 ms
コード長 546 bytes
コンパイル時間 289 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 177,536 KB
最終ジャッジ日時 2024-11-16 01:37:24
合計ジャッジ時間 21,509 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,144 KB
testcase_01 AC 45 ms
53,504 KB
testcase_02 AC 44 ms
53,888 KB
testcase_03 AC 43 ms
53,760 KB
testcase_04 AC 44 ms
53,504 KB
testcase_05 AC 44 ms
54,016 KB
testcase_06 AC 44 ms
54,144 KB
testcase_07 AC 44 ms
53,760 KB
testcase_08 AC 47 ms
54,656 KB
testcase_09 AC 45 ms
54,016 KB
testcase_10 AC 46 ms
54,912 KB
testcase_11 AC 52 ms
61,440 KB
testcase_12 AC 52 ms
61,952 KB
testcase_13 AC 57 ms
64,384 KB
testcase_14 AC 58 ms
64,848 KB
testcase_15 AC 58 ms
64,000 KB
testcase_16 AC 56 ms
64,640 KB
testcase_17 AC 206 ms
157,240 KB
testcase_18 AC 204 ms
157,148 KB
testcase_19 AC 203 ms
156,800 KB
testcase_20 AC 1,880 ms
169,472 KB
testcase_21 AC 2,060 ms
170,620 KB
testcase_22 AC 1,372 ms
165,376 KB
testcase_23 AC 1,453 ms
167,148 KB
testcase_24 AC 1,442 ms
167,112 KB
testcase_25 AC 1,444 ms
167,424 KB
testcase_26 AC 2,650 ms
177,536 KB
testcase_27 AC 2,630 ms
177,140 KB
testcase_28 AC 213 ms
157,312 KB
testcase_29 AC 2,216 ms
167,660 KB
testcase_30 AC 203 ms
149,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

def f(x):
  return ord(x)-97

h,w=map(int,input().split())
s=[]
for i in range(h):
  s.append(input())
a=[[0]*w for i in range(h)]
a[0][0]=1
dxdy=[(0,1),(1,0)]
ans=[]
todo=[(0,0)]
for i in range(h+w-1):
  d=[]
  mn='z'
  for x,y in todo:
    if mn==s[x][y]:
      d.append((x,y))
    elif mn>s[x][y]:
      d=[(x,y)]
      mn=s[x][y]
  ans.append(mn)
  todo=set()
  for x,y in d:
    for dx,dy in dxdy:
      if 0<=x+dx<h and 0<=y+dy<w:
        a[x+dx][y+dy]=1
        todo.add((x+dx,y+dy))
print(*ans,sep='')
0