結果

問題 No.2064 Smallest Sequence on Grid
ユーザー SidewaysOwlSidewaysOwl
提出日時 2022-09-03 18:10:44
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 908 bytes
コンパイル時間 365 ms
コンパイル使用メモリ 82,240 KB
実行使用メモリ 517,224 KB
最終ジャッジ日時 2024-11-17 08:57:57
合計ジャッジ時間 92,891 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
129,536 KB
testcase_01 AC 43 ms
58,496 KB
testcase_02 AC 43 ms
59,008 KB
testcase_03 AC 44 ms
129,280 KB
testcase_04 AC 44 ms
58,880 KB
testcase_05 AC 44 ms
129,664 KB
testcase_06 AC 45 ms
58,752 KB
testcase_07 AC 44 ms
129,664 KB
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 MLE -
testcase_18 MLE -
testcase_19 MLE -
testcase_20 MLE -
testcase_21 MLE -
testcase_22 MLE -
testcase_23 MLE -
testcase_24 MLE -
testcase_25 MLE -
testcase_26 AC 2,695 ms
508,288 KB
testcase_27 TLE -
testcase_28 MLE -
testcase_29 AC 2,333 ms
440,320 KB
testcase_30 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

h,w = map(int,input().split())
s = [list(input()) for _ in range(h)]
vis = [[0] * w for _ in range(h)]
vis[0][0] = 1
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:
            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
                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 not vis[ni][nj]:continue
        i ,j = ni,nj
        ans.append(s[ni][nj])
print("".join(ans[::-1]))
0