結果

問題 No.2064 Smallest Sequence on Grid
ユーザー SidewaysOwlSidewaysOwl
提出日時 2022-09-03 17:51:54
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 1,149 bytes
コンパイル時間 315 ms
コンパイル使用メモリ 82,236 KB
実行使用メモリ 968,136 KB
最終ジャッジ日時 2024-11-17 08:23:33
合計ジャッジ時間 40,351 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
59,432 KB
testcase_01 MLE -
testcase_02 AC 38 ms
60,104 KB
testcase_03 AC 39 ms
53,288 KB
testcase_04 AC 39 ms
52,816 KB
testcase_05 AC 40 ms
52,924 KB
testcase_06 AC 40 ms
53,660 KB
testcase_07 AC 38 ms
52,944 KB
testcase_08 AC 53 ms
63,700 KB
testcase_09 AC 53 ms
63,204 KB
testcase_10 AC 58 ms
64,980 KB
testcase_11 AC 65 ms
68,368 KB
testcase_12 AC 65 ms
68,920 KB
testcase_13 AC 73 ms
71,172 KB
testcase_14 AC 68 ms
69,056 KB
testcase_15 AC 67 ms
68,660 KB
testcase_16 AC 68 ms
68,808 KB
testcase_17 AC 1,375 ms
503,356 KB
testcase_18 AC 1,371 ms
503,300 KB
testcase_19 AC 1,395 ms
503,304 KB
testcase_20 TLE -
testcase_21 TLE -
testcase_22 AC 2,861 ms
503,032 KB
testcase_23 AC 2,917 ms
503,448 KB
testcase_24 AC 2,910 ms
503,420 KB
testcase_25 AC 2,962 ms
503,428 KB
testcase_26 TLE -
testcase_27 TLE -
testcase_28 AC 1,422 ms
503,600 KB
testcase_29 TLE -
testcase_30 MLE -
権限があれば一括ダウンロードができます

ソースコード

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)]
for n in range(h+w):
    mark = '{'
    for i in range(n+1):
        j = n-i
        if not (0 <= i <= h-1 and 0 <= j <= w-1):continue
        if 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 mark > s[ni][nj]:
                    mark = s[ni][nj]
    for i in range(n+1):
        j = n-i
        if not (0 <= i <= h-1 and 0 <= j <= w-1):continue
        if 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 mark == s[ni][nj]:
                    vis[ni][nj] = 1
ans = [s[h-1][w-1]]
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