結果

問題 No.2064 Smallest Sequence on Grid
ユーザー tassei903tassei903
提出日時 2022-09-02 22:02:51
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 921 bytes
コンパイル時間 119 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 848,744 KB
最終ジャッジ日時 2024-04-27 21:37:35
合計ジャッジ時間 5,821 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
54,272 KB
testcase_01 AC 34 ms
54,756 KB
testcase_02 AC 34 ms
54,008 KB
testcase_03 AC 34 ms
55,312 KB
testcase_04 AC 33 ms
54,660 KB
testcase_05 AC 33 ms
54,840 KB
testcase_06 AC 35 ms
54,452 KB
testcase_07 AC 34 ms
55,064 KB
testcase_08 AC 34 ms
55,288 KB
testcase_09 AC 34 ms
54,748 KB
testcase_10 AC 37 ms
54,572 KB
testcase_11 MLE -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################
h, w = na()

dist = ["{"] * (h + w - 1)
s = [input() for i in range(h)]
from collections import deque

d = deque([(0, 0, s[0][0])])
dist[0] = s[0][0]

while d:
    x, y, z = d.popleft()
    if dist[x+y] != z:
        continue
    #print(x,y,z)
    nx = x + 1
    ny = y
    if nx < h and ny < w and s[nx][ny] <= dist[nx+ny]:
        dist[nx+ny] = s[nx][ny]
        d.append((nx,ny,dist[nx+ny]))
    nx = x
    ny = y + 1
    if nx < h and ny < w and s[nx][ny] <= dist[nx+ny]:
        dist[nx+ny] = s[nx][ny]
        d.append((nx,ny,dist[nx+ny]))

print("".join(dist))
0