結果

問題 No.2064 Smallest Sequence on Grid
ユーザー tassei903tassei903
提出日時 2022-09-02 22:05:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,223 ms / 3,000 ms
コード長 979 bytes
コンパイル時間 313 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 269,824 KB
最終ジャッジ日時 2024-11-16 03:38:04
合計ジャッジ時間 18,707 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
53,632 KB
testcase_01 AC 44 ms
53,632 KB
testcase_02 AC 45 ms
53,376 KB
testcase_03 AC 45 ms
53,504 KB
testcase_04 AC 44 ms
53,760 KB
testcase_05 AC 45 ms
53,504 KB
testcase_06 AC 45 ms
53,632 KB
testcase_07 AC 46 ms
53,760 KB
testcase_08 AC 45 ms
53,632 KB
testcase_09 AC 45 ms
53,760 KB
testcase_10 AC 46 ms
53,888 KB
testcase_11 AC 47 ms
54,528 KB
testcase_12 AC 55 ms
62,080 KB
testcase_13 AC 59 ms
63,360 KB
testcase_14 AC 63 ms
65,536 KB
testcase_15 AC 60 ms
64,384 KB
testcase_16 AC 62 ms
65,152 KB
testcase_17 AC 185 ms
153,856 KB
testcase_18 AC 184 ms
154,112 KB
testcase_19 AC 184 ms
153,856 KB
testcase_20 AC 1,611 ms
269,056 KB
testcase_21 AC 1,790 ms
268,800 KB
testcase_22 AC 1,223 ms
267,136 KB
testcase_23 AC 1,258 ms
268,544 KB
testcase_24 AC 1,250 ms
268,288 KB
testcase_25 AC 1,272 ms
268,288 KB
testcase_26 AC 2,222 ms
268,544 KB
testcase_27 AC 2,223 ms
268,396 KB
testcase_28 AC 185 ms
153,856 KB
testcase_29 AC 1,824 ms
269,824 KB
testcase_30 AC 182 ms
149,504 KB
権限があれば一括ダウンロードができます

ソースコード

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]
f = [[0] * w for i in range(h)]
while d:
    x, y, z = d.popleft()
    if dist[x+y] != z or f[x][y]:
        continue
    f[x][y] = 1
    #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