結果

問題 No.2064 Smallest Sequence on Grid
ユーザー roarisroaris
提出日時 2022-09-24 17:57:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,789 ms / 3,000 ms
コード長 632 bytes
コンパイル時間 323 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 101,248 KB
最終ジャッジ日時 2024-12-22 12:21:18
合計ジャッジ時間 18,380 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
51,456 KB
testcase_01 AC 46 ms
51,584 KB
testcase_02 AC 47 ms
51,840 KB
testcase_03 AC 45 ms
51,456 KB
testcase_04 AC 48 ms
51,584 KB
testcase_05 AC 46 ms
51,840 KB
testcase_06 AC 48 ms
51,840 KB
testcase_07 AC 44 ms
51,968 KB
testcase_08 AC 45 ms
51,968 KB
testcase_09 AC 47 ms
52,096 KB
testcase_10 AC 48 ms
52,352 KB
testcase_11 AC 47 ms
52,352 KB
testcase_12 AC 48 ms
52,096 KB
testcase_13 AC 54 ms
59,392 KB
testcase_14 AC 57 ms
60,416 KB
testcase_15 AC 56 ms
60,160 KB
testcase_16 AC 58 ms
60,544 KB
testcase_17 AC 120 ms
84,736 KB
testcase_18 AC 118 ms
84,992 KB
testcase_19 AC 120 ms
85,120 KB
testcase_20 AC 1,261 ms
95,360 KB
testcase_21 AC 1,393 ms
96,000 KB
testcase_22 AC 939 ms
92,416 KB
testcase_23 AC 954 ms
93,696 KB
testcase_24 AC 959 ms
93,568 KB
testcase_25 AC 958 ms
93,184 KB
testcase_26 AC 1,756 ms
100,864 KB
testcase_27 AC 1,789 ms
100,608 KB
testcase_28 AC 120 ms
85,248 KB
testcase_29 AC 1,488 ms
101,248 KB
testcase_30 AC 134 ms
84,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

H, W = map(int, input().split())
S = [input()[:-1] for _ in range(H)]
now = {(0, 0)}
ans = [S[0][0]]

for _ in range(H+W-2):
    m = 'z'
    nex = set()
    
    for x, y in now:
        if x+1<H:
            if m==S[x+1][y]:
                nex.add((x+1, y))
            elif m>S[x+1][y]:
                m = S[x+1][y]
                nex = {(x+1, y)}
        
        if y+1<W:
            if m==S[x][y+1]:
                nex.add((x, y+1))
            elif m>S[x][y+1]:
                m = S[x][y+1]
                nex = {(x, y+1)}
    
    ans.append(m)
    now = nex

print(''.join(ans))
0