結果

問題 No.2064 Smallest Sequence on Grid
ユーザー lloyzlloyz
提出日時 2022-09-02 22:50:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,702 ms / 3,000 ms
コード長 615 bytes
コンパイル時間 528 ms
コンパイル使用メモリ 82,296 KB
実行使用メモリ 168,268 KB
最終ジャッジ日時 2024-11-16 05:20:24
合計ジャッジ時間 17,036 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,268 KB
testcase_01 AC 46 ms
52,240 KB
testcase_02 AC 43 ms
52,316 KB
testcase_03 AC 39 ms
52,612 KB
testcase_04 AC 40 ms
52,476 KB
testcase_05 AC 40 ms
52,828 KB
testcase_06 AC 39 ms
53,320 KB
testcase_07 AC 40 ms
53,168 KB
testcase_08 AC 44 ms
59,708 KB
testcase_09 AC 44 ms
57,836 KB
testcase_10 AC 44 ms
59,828 KB
testcase_11 AC 48 ms
61,100 KB
testcase_12 AC 48 ms
60,680 KB
testcase_13 AC 50 ms
63,424 KB
testcase_14 AC 52 ms
64,564 KB
testcase_15 AC 50 ms
63,440 KB
testcase_16 AC 51 ms
62,848 KB
testcase_17 AC 376 ms
160,944 KB
testcase_18 AC 379 ms
160,972 KB
testcase_19 AC 394 ms
160,788 KB
testcase_20 AC 1,242 ms
165,764 KB
testcase_21 AC 1,317 ms
165,924 KB
testcase_22 AC 949 ms
164,116 KB
testcase_23 AC 1,027 ms
164,620 KB
testcase_24 AC 1,045 ms
164,484 KB
testcase_25 AC 1,043 ms
164,440 KB
testcase_26 AC 1,702 ms
168,220 KB
testcase_27 AC 1,696 ms
168,268 KB
testcase_28 AC 378 ms
160,940 KB
testcase_29 AC 1,441 ms
147,720 KB
testcase_30 AC 354 ms
147,148 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

h, w = map(int, input().split())
S = [list(map(ord, list(input()))) for _ in range(h)]
Directions = [(1, 0), (0, 1)]

ans = chr(S[0][0])
C = set([0])
for _ in range(h + w - 2):
    minT = 10**18
    NC = set()
    for c in C:
        ci, cj = divmod(c, w)
        for di, dj in Directions:
            ni = ci + di
            nj = cj + dj
            if ni < h and nj < w:
                if S[ni][nj] == minT:
                    NC.add(ni * w + nj)
                elif S[ni][nj] < minT:
                    minT = S[ni][nj]
                    NC = set([ni * w + nj])
    ans += chr(minT)
    C = NC
print(ans)
0