結果

問題 No.2064 Smallest Sequence on Grid
ユーザー ntudantuda
提出日時 2022-10-01 17:06:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 367 ms / 3,000 ms
コード長 685 bytes
コンパイル時間 293 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 90,384 KB
最終ジャッジ日時 2024-06-06 09:11:36
合計ジャッジ時間 7,977 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,496 KB
testcase_01 AC 35 ms
52,132 KB
testcase_02 AC 34 ms
53,240 KB
testcase_03 AC 34 ms
52,828 KB
testcase_04 AC 37 ms
52,820 KB
testcase_05 AC 36 ms
53,332 KB
testcase_06 AC 36 ms
52,908 KB
testcase_07 AC 35 ms
51,948 KB
testcase_08 AC 38 ms
52,776 KB
testcase_09 AC 37 ms
52,548 KB
testcase_10 AC 36 ms
52,860 KB
testcase_11 AC 38 ms
53,716 KB
testcase_12 AC 37 ms
52,488 KB
testcase_13 AC 42 ms
59,576 KB
testcase_14 AC 42 ms
60,652 KB
testcase_15 AC 42 ms
59,664 KB
testcase_16 AC 41 ms
60,208 KB
testcase_17 AC 111 ms
84,440 KB
testcase_18 AC 104 ms
84,444 KB
testcase_19 AC 105 ms
84,368 KB
testcase_20 AC 337 ms
88,072 KB
testcase_21 AC 367 ms
88,836 KB
testcase_22 AC 240 ms
86,524 KB
testcase_23 AC 237 ms
87,560 KB
testcase_24 AC 238 ms
87,624 KB
testcase_25 AC 234 ms
87,972 KB
testcase_26 AC 337 ms
90,176 KB
testcase_27 AC 338 ms
90,384 KB
testcase_28 AC 110 ms
84,616 KB
testcase_29 AC 305 ms
87,756 KB
testcase_30 AC 117 ms
84,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H, W = map(int, input().split())
S = [input() for _ in range(H)]
T = [S[0][0]]
Q = [(0, 0)]

for _ in range(H + W - 2):
    Q2 = []
    h0 = -1
    c = "z"
    for h,w in Q:
        if w < W - 1 and h > h0:
            if S[h][w + 1] == c:
                Q2.append((h,w + 1))
            elif S[h][w + 1] < c:
                c = S[h][w + 1]
                Q2 = [(h,w + 1)]
            h0 = h
        if h < H - 1 and h + 1 > h0:
            if S[h + 1][w] == c:
                Q2.append((h + 1,w))
            elif S[h + 1][w] < c:
                c = S[h + 1][w]
                Q2 = [(h + 1,w)]
            h0 = h + 1
    #print(Q2)
    Q = Q2
    T.append(c)

print("".join(T))
0