結果

問題 No.2064 Smallest Sequence on Grid
ユーザー とりゐとりゐ
提出日時 2022-08-27 12:01:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,034 ms / 3,000 ms
コード長 583 bytes
コンパイル時間 297 ms
コンパイル使用メモリ 81,848 KB
実行使用メモリ 170,592 KB
最終ジャッジ日時 2024-11-16 01:34:46
合計ジャッジ時間 11,963 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
54,804 KB
testcase_01 AC 42 ms
54,076 KB
testcase_02 AC 41 ms
54,924 KB
testcase_03 AC 42 ms
54,924 KB
testcase_04 AC 41 ms
53,956 KB
testcase_05 AC 40 ms
54,092 KB
testcase_06 AC 42 ms
54,088 KB
testcase_07 AC 40 ms
54,412 KB
testcase_08 AC 46 ms
60,368 KB
testcase_09 AC 44 ms
59,900 KB
testcase_10 AC 46 ms
60,836 KB
testcase_11 AC 51 ms
63,680 KB
testcase_12 AC 52 ms
64,124 KB
testcase_13 AC 56 ms
64,716 KB
testcase_14 AC 58 ms
65,508 KB
testcase_15 AC 57 ms
66,676 KB
testcase_16 AC 57 ms
67,084 KB
testcase_17 AC 279 ms
157,108 KB
testcase_18 AC 281 ms
156,912 KB
testcase_19 AC 274 ms
156,848 KB
testcase_20 AC 795 ms
164,884 KB
testcase_21 AC 835 ms
166,012 KB
testcase_22 AC 646 ms
161,520 KB
testcase_23 AC 688 ms
163,796 KB
testcase_24 AC 651 ms
163,852 KB
testcase_25 AC 666 ms
163,808 KB
testcase_26 AC 1,034 ms
170,416 KB
testcase_27 AC 1,032 ms
170,592 KB
testcase_28 AC 276 ms
156,960 KB
testcase_29 AC 865 ms
155,148 KB
testcase_30 AC 261 ms
149,964 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=[]
  ok=[0]*h
  for x,y in d:
    for dx,dy in dxdy:
      if 0<=x+dx<h and 0<=y+dy<w:
        ok[x+dx]=1
  for x in range(h):
    if ok[x]:
      todo.append((x,i+1-x))
print(*ans,sep='')
0