結果

問題 No.2064 Smallest Sequence on Grid
ユーザー first_vilfirst_vil
提出日時 2022-09-02 21:57:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,090 ms / 3,000 ms
コード長 1,254 bytes
コンパイル時間 352 ms
コンパイル使用メモリ 82,520 KB
実行使用メモリ 328,880 KB
最終ジャッジ日時 2024-11-16 03:21:43
合計ジャッジ時間 24,969 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,948 KB
testcase_01 AC 37 ms
52,820 KB
testcase_02 AC 38 ms
54,044 KB
testcase_03 AC 39 ms
53,984 KB
testcase_04 AC 37 ms
53,204 KB
testcase_05 AC 38 ms
53,604 KB
testcase_06 AC 40 ms
53,636 KB
testcase_07 AC 38 ms
52,868 KB
testcase_08 AC 50 ms
61,472 KB
testcase_09 AC 47 ms
62,288 KB
testcase_10 AC 49 ms
63,048 KB
testcase_11 AC 52 ms
64,200 KB
testcase_12 AC 52 ms
64,512 KB
testcase_13 AC 55 ms
66,548 KB
testcase_14 AC 57 ms
67,540 KB
testcase_15 AC 56 ms
66,376 KB
testcase_16 AC 58 ms
65,940 KB
testcase_17 AC 1,114 ms
328,496 KB
testcase_18 AC 1,105 ms
328,360 KB
testcase_19 AC 1,094 ms
328,224 KB
testcase_20 AC 1,879 ms
328,244 KB
testcase_21 AC 1,946 ms
328,352 KB
testcase_22 AC 1,712 ms
328,376 KB
testcase_23 AC 1,774 ms
328,620 KB
testcase_24 AC 1,757 ms
328,624 KB
testcase_25 AC 1,751 ms
328,172 KB
testcase_26 AC 2,089 ms
328,492 KB
testcase_27 AC 2,090 ms
328,508 KB
testcase_28 AC 1,112 ms
328,880 KB
testcase_29 AC 1,615 ms
309,288 KB
testcase_30 AC 937 ms
310,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd
import sys

int1 = lambda x: int(x) - 1

# input = lambda: sys.stdin.buffer.readline()
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
i1 = lambda: int1(input())
mi = lambda: map(int, input().split())
mi1 = lambda: map(int1, input().split())
li = lambda: list(mi())
li1 = lambda: list(mi1())
lli = lambda n: [li() for _ in range(n)]

INF = float("inf")
mod = int(1e9 + 7)
# mod = 998244353

h, w = mi()
s = [input() for i in range(h)]
ans = [s[0][0]]
e = chr(ord("z") + 1)
d = [list() for i in range(h + w - 1)]
for y in range(h):
    for x in range(w):
        d[y + x].append(y * w + x)
f = [[False] * w for i in range(h)]
f[0][0] = True
for i in range(h + w - 2):
    mn = e
    for tmp in d[i]:
        y, x = tmp // w, tmp % w
        if not f[y][x]:
            continue
        if y + 1 < h and mn > s[y + 1][x]:
            mn = s[y + 1][x]
        if x + 1 < w and mn > s[y][x + 1]:
            mn = s[y][x + 1]
    ans.append(mn)
    for tmp in d[i]:
        y, x = tmp // w, tmp % w
        if not f[y][x]:
            continue
        if y + 1 < h and s[y + 1][x] == mn:
            f[y + 1][x] = True
        if x + 1 < w and s[y][x + 1] == mn:
            f[y][x + 1] = True
print("".join(ans))
0