結果

問題 No.2064 Smallest Sequence on Grid
ユーザー ああいいああいい
提出日時 2022-09-04 11:05:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,704 ms / 3,000 ms
コード長 590 bytes
コンパイル時間 242 ms
コンパイル使用メモリ 82,124 KB
実行使用メモリ 104,960 KB
最終ジャッジ日時 2024-11-18 13:01:29
合計ジャッジ時間 16,989 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,032 KB
testcase_01 AC 37 ms
52,376 KB
testcase_02 AC 37 ms
52,672 KB
testcase_03 AC 36 ms
53,044 KB
testcase_04 AC 38 ms
52,536 KB
testcase_05 AC 37 ms
53,008 KB
testcase_06 AC 37 ms
52,408 KB
testcase_07 AC 36 ms
52,168 KB
testcase_08 AC 39 ms
53,808 KB
testcase_09 AC 39 ms
52,400 KB
testcase_10 AC 37 ms
52,360 KB
testcase_11 AC 40 ms
54,244 KB
testcase_12 AC 40 ms
53,044 KB
testcase_13 AC 50 ms
61,696 KB
testcase_14 AC 50 ms
63,248 KB
testcase_15 AC 51 ms
62,908 KB
testcase_16 AC 54 ms
63,232 KB
testcase_17 AC 132 ms
84,948 KB
testcase_18 AC 132 ms
84,604 KB
testcase_19 AC 135 ms
85,048 KB
testcase_20 AC 1,379 ms
100,480 KB
testcase_21 AC 1,514 ms
101,740 KB
testcase_22 AC 1,008 ms
94,852 KB
testcase_23 AC 917 ms
93,056 KB
testcase_24 AC 912 ms
93,108 KB
testcase_25 AC 928 ms
93,528 KB
testcase_26 AC 1,704 ms
100,764 KB
testcase_27 AC 1,688 ms
100,824 KB
testcase_28 AC 116 ms
84,608 KB
testcase_29 AC 1,623 ms
104,960 KB
testcase_30 AC 125 ms
84,876 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

ans = []
s = set()
s.add((0,0))

ans.append(S[0][0])
for _ in range(H + W - 2):
    nx = set()
    c = "z"
    for x,y in s:
        if x + 1 < H:
            u = S[x + 1][y]
            if u < c:
                c = u
        if y + 1 < W:
            u = S[x][y + 1]
            if u < c:
                c = u
    ans.append(c)
    for x,y in s:
        if x + 1 < H and S[x + 1][y] == c:
            nx.add((x + 1,y))
        if y + 1 < W and S[x][y + 1] == c:
            nx.add((x,y + 1))
    s = nx
print("".join(ans))
0