結果

問題 No.2064 Smallest Sequence on Grid
ユーザー SidewaysOwlSidewaysOwl
提出日時 2022-09-03 18:26:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,777 ms / 3,000 ms
コード長 982 bytes
コンパイル時間 396 ms
コンパイル使用メモリ 82,024 KB
実行使用メモリ 503,324 KB
最終ジャッジ日時 2024-11-17 09:19:30
合計ジャッジ時間 34,508 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,544 KB
testcase_01 AC 39 ms
55,408 KB
testcase_02 AC 39 ms
53,872 KB
testcase_03 AC 38 ms
55,396 KB
testcase_04 AC 39 ms
54,620 KB
testcase_05 AC 41 ms
55,200 KB
testcase_06 AC 38 ms
54,168 KB
testcase_07 AC 40 ms
55,296 KB
testcase_08 AC 49 ms
61,288 KB
testcase_09 AC 50 ms
61,976 KB
testcase_10 AC 53 ms
63,264 KB
testcase_11 AC 61 ms
66,508 KB
testcase_12 AC 59 ms
65,216 KB
testcase_13 AC 63 ms
66,684 KB
testcase_14 AC 61 ms
66,736 KB
testcase_15 AC 59 ms
65,828 KB
testcase_16 AC 56 ms
67,032 KB
testcase_17 AC 1,654 ms
502,904 KB
testcase_18 AC 1,893 ms
502,992 KB
testcase_19 AC 1,604 ms
503,132 KB
testcase_20 AC 2,544 ms
502,992 KB
testcase_21 AC 2,562 ms
502,732 KB
testcase_22 AC 2,388 ms
502,636 KB
testcase_23 AC 2,295 ms
503,324 KB
testcase_24 AC 2,282 ms
503,240 KB
testcase_25 AC 2,298 ms
503,300 KB
testcase_26 AC 2,767 ms
502,660 KB
testcase_27 AC 2,777 ms
502,464 KB
testcase_28 AC 1,589 ms
503,088 KB
testcase_29 AC 2,213 ms
434,972 KB
testcase_30 AC 1,784 ms
465,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

h,w = map(int,input().split())
s = [list(input()) for _ in range(h)]
vis = [[-1] * w for _ in range(h)]
vis[0][0] = 0
vecs = [(0,1),(1,0)]
mark = s[0][0]
for n in range(h+w):
    n_mark = '{'
    for i in range(n+1):
        j = n-i
        if not (0 <= i <= h-1 and 0 <= j <= w-1):continue
        if s[i][j] == mark and vis[i][j] == 0:
            vis[i][j] = 1
            for vi,vj in vecs:
                ni,nj = i + vi,j + vj
                if not (0 <= ni <= h-1 and 0 <= nj <= w-1):continue
                vis[ni][nj] = 0
                if n_mark > s[ni][nj]:
                    n_mark = s[ni][nj]
                    
    mark = n_mark
ans = [s[h-1][w-1]]
from collections import deque
vecs = [(0,-1),(-1,0)]
i,j = h-1,w-1
while (i+j):
    for vi,vj in vecs:
        ni = i+vi
        nj = j+vj
        if not (0 <= ni <= h-1 and 0 <= nj <= w-1):continue
        if vis[ni][nj] != 1:continue
        i ,j = ni,nj
        ans.append(s[ni][nj])
print("".join(ans[::-1]))
0