結果

問題 No.2064 Smallest Sequence on Grid
ユーザー rlangevinrlangevin
提出日時 2023-01-21 01:37:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,821 ms / 3,000 ms
コード長 982 bytes
コンパイル時間 398 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 182,060 KB
最終ジャッジ日時 2024-06-23 13:13:08
合計ジャッジ時間 23,431 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,096 KB
testcase_01 AC 35 ms
51,712 KB
testcase_02 AC 35 ms
52,224 KB
testcase_03 AC 36 ms
52,352 KB
testcase_04 AC 35 ms
52,224 KB
testcase_05 AC 35 ms
51,968 KB
testcase_06 AC 36 ms
52,096 KB
testcase_07 AC 35 ms
51,968 KB
testcase_08 AC 44 ms
60,544 KB
testcase_09 AC 42 ms
59,136 KB
testcase_10 AC 49 ms
61,312 KB
testcase_11 AC 49 ms
62,848 KB
testcase_12 AC 50 ms
63,872 KB
testcase_13 AC 52 ms
65,408 KB
testcase_14 AC 52 ms
65,664 KB
testcase_15 AC 51 ms
64,896 KB
testcase_16 AC 53 ms
65,408 KB
testcase_17 AC 368 ms
162,560 KB
testcase_18 AC 376 ms
162,272 KB
testcase_19 AC 360 ms
161,920 KB
testcase_20 AC 2,016 ms
173,824 KB
testcase_21 AC 2,206 ms
175,472 KB
testcase_22 AC 1,495 ms
168,576 KB
testcase_23 AC 1,622 ms
171,904 KB
testcase_24 AC 1,592 ms
171,888 KB
testcase_25 AC 1,635 ms
172,316 KB
testcase_26 AC 2,821 ms
182,048 KB
testcase_27 AC 2,815 ms
182,060 KB
testcase_28 AC 346 ms
162,304 KB
testcase_29 AC 2,331 ms
159,872 KB
testcase_30 AC 319 ms
147,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline = sys.stdin.readline

def alp_to_num(cha):
    num = ord(cha) - ord("a")
    return num


H, W = map(int, readline().split())
S = []
for i in range(H):
    L = list(readline().rstrip())
    L = list(map(alp_to_num, L))
    S.append(L)
    
x, y = 0, 0
pre = [[] for i in range(26)]
pre[S[0][0]].append(0)
dx, dy = [1, 0], [0, 1]
ans = []
for i in range(H + W - 1):
    dp = [[] for i in range(26)]
    SS = set()
    for i, lst in enumerate(pre):
        if lst:
            ans.append(chr(i + ord("a")))
            for z in lst:
                nx, ny = divmod(z, W)
                for k in range(2):
                    x = nx + dx[k]
                    y = ny + dy[k]
                    if x == H or y == W:
                        continue
                    if (x, y) in SS:
                        continue
                    SS.add((x, y))
                    dp[S[x][y]].append(x * W + y)
            break
    dp, pre = pre, dp
print(*ans, sep="")
0