結果

問題 No.2064 Smallest Sequence on Grid
ユーザー とりゐとりゐ
提出日時 2022-08-27 12:09:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,041 ms / 3,000 ms
コード長 478 bytes
コンパイル時間 397 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 99,832 KB
最終ジャッジ日時 2024-11-16 01:36:15
合計ジャッジ時間 11,362 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,584 KB
testcase_01 AC 40 ms
52,096 KB
testcase_02 AC 40 ms
52,096 KB
testcase_03 AC 40 ms
52,096 KB
testcase_04 AC 40 ms
52,224 KB
testcase_05 AC 39 ms
52,352 KB
testcase_06 AC 39 ms
51,840 KB
testcase_07 AC 40 ms
51,968 KB
testcase_08 AC 45 ms
57,984 KB
testcase_09 AC 42 ms
58,240 KB
testcase_10 AC 46 ms
59,264 KB
testcase_11 AC 51 ms
60,928 KB
testcase_12 AC 53 ms
62,592 KB
testcase_13 AC 55 ms
62,848 KB
testcase_14 AC 56 ms
63,232 KB
testcase_15 AC 56 ms
63,744 KB
testcase_16 AC 55 ms
63,616 KB
testcase_17 AC 203 ms
86,208 KB
testcase_18 AC 201 ms
86,528 KB
testcase_19 AC 202 ms
86,400 KB
testcase_20 AC 788 ms
93,760 KB
testcase_21 AC 890 ms
94,980 KB
testcase_22 AC 621 ms
91,064 KB
testcase_23 AC 634 ms
93,216 KB
testcase_24 AC 628 ms
93,056 KB
testcase_25 AC 633 ms
93,184 KB
testcase_26 AC 1,041 ms
99,832 KB
testcase_27 AC 1,040 ms
99,732 KB
testcase_28 AC 204 ms
86,428 KB
testcase_29 AC 904 ms
95,104 KB
testcase_30 AC 195 ms
85,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

h,w=map(int,input().split())
s=[]
for i in range(h):
  s.append(input())
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