結果

問題 No.2064 Smallest Sequence on Grid
ユーザー lloyzlloyz
提出日時 2022-09-02 22:47:42
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 695 bytes
コンパイル時間 399 ms
コンパイル使用メモリ 82,348 KB
実行使用メモリ 439,364 KB
最終ジャッジ日時 2024-11-16 05:14:38
合計ジャッジ時間 30,583 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,880 KB
testcase_01 AC 39 ms
52,544 KB
testcase_02 AC 39 ms
52,216 KB
testcase_03 AC 40 ms
53,480 KB
testcase_04 AC 39 ms
52,544 KB
testcase_05 AC 39 ms
52,684 KB
testcase_06 AC 43 ms
52,748 KB
testcase_07 AC 38 ms
53,280 KB
testcase_08 AC 40 ms
53,964 KB
testcase_09 AC 40 ms
53,424 KB
testcase_10 AC 41 ms
53,148 KB
testcase_11 AC 47 ms
61,188 KB
testcase_12 AC 49 ms
59,992 KB
testcase_13 AC 51 ms
62,184 KB
testcase_14 AC 52 ms
62,256 KB
testcase_15 AC 50 ms
61,816 KB
testcase_16 AC 52 ms
62,364 KB
testcase_17 AC 787 ms
432,596 KB
testcase_18 AC 778 ms
432,392 KB
testcase_19 AC 802 ms
432,132 KB
testcase_20 AC 2,495 ms
436,632 KB
testcase_21 AC 2,703 ms
437,204 KB
testcase_22 AC 1,923 ms
434,820 KB
testcase_23 AC 2,184 ms
435,328 KB
testcase_24 AC 2,093 ms
435,504 KB
testcase_25 AC 2,120 ms
435,472 KB
testcase_26 TLE -
testcase_27 TLE -
testcase_28 AC 775 ms
432,192 KB
testcase_29 AC 2,818 ms
380,712 KB
testcase_30 AC 727 ms
401,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

ans = S[0][0]
C = set([0])
for _ in range(h + w - 2):
    minT = ''
    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 minT == '':
                    minT = S[ni][nj]
                    NC.add(ni * w + nj)
                elif S[ni][nj] == minT:
                    NC.add(ni * w + nj)
                elif S[ni][nj] < minT:
                    minT = S[ni][nj]
                    NC = set([ni * w + nj])
    ans += minT
    C = NC
print(ans)
0