結果

問題 No.2064 Smallest Sequence on Grid
ユーザー とりゐとりゐ
提出日時 2022-08-27 11:37:19
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 546 bytes
コンパイル時間 408 ms
コンパイル使用メモリ 82,528 KB
実行使用メモリ 856,156 KB
最終ジャッジ日時 2024-11-16 01:35:57
合計ジャッジ時間 69,714 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
61,032 KB
testcase_01 MLE -
testcase_02 AC 41 ms
62,208 KB
testcase_03 AC 41 ms
468,864 KB
testcase_04 AC 40 ms
60,564 KB
testcase_05 AC 41 ms
60,400 KB
testcase_06 AC 40 ms
55,680 KB
testcase_07 AC 42 ms
54,584 KB
testcase_08 AC 42 ms
55,280 KB
testcase_09 AC 41 ms
54,676 KB
testcase_10 AC 46 ms
56,448 KB
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 MLE -
testcase_22 MLE -
testcase_23 MLE -
testcase_24 MLE -
testcase_25 MLE -
testcase_26 MLE -
testcase_27 MLE -
testcase_28 AC 266 ms
147,988 KB
testcase_29 MLE -
testcase_30 MLE -
権限があれば一括ダウンロードができます

ソースコード

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=[]
  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.append((x+dx,y+dy))
print(*ans,sep='')
0