結果

問題 No.2064 Smallest Sequence on Grid
ユーザー tassei903tassei903
提出日時 2022-09-02 22:02:51
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 921 bytes
コンパイル時間 328 ms
コンパイル使用メモリ 82,388 KB
実行使用メモリ 905,352 KB
最終ジャッジ日時 2024-11-16 03:32:10
合計ジャッジ時間 74,455 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 MLE -
testcase_01 AC 41 ms
61,488 KB
testcase_02 AC 40 ms
59,008 KB
testcase_03 AC 41 ms
61,564 KB
testcase_04 AC 42 ms
364,108 KB
testcase_05 AC 41 ms
59,520 KB
testcase_06 AC 42 ms
365,740 KB
testcase_07 MLE -
testcase_08 AC 42 ms
53,888 KB
testcase_09 AC 42 ms
53,760 KB
testcase_10 AC 42 ms
54,144 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 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 AC 213 ms
85,392 KB
testcase_29 TLE -
testcase_30 MLE -
権限があれば一括ダウンロードができます

ソースコード

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