結果

問題 No.2064 Smallest Sequence on Grid
ユーザー shobonvipshobonvip
提出日時 2022-09-02 22:02:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 733 ms / 3,000 ms
コード長 825 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 82,028 KB
実行使用メモリ 160,496 KB
最終ジャッジ日時 2024-11-16 03:30:41
合計ジャッジ時間 8,608 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,612 KB
testcase_01 AC 38 ms
52,436 KB
testcase_02 AC 38 ms
52,816 KB
testcase_03 AC 39 ms
52,136 KB
testcase_04 AC 38 ms
52,444 KB
testcase_05 AC 38 ms
52,480 KB
testcase_06 AC 37 ms
52,428 KB
testcase_07 AC 39 ms
53,020 KB
testcase_08 AC 39 ms
52,832 KB
testcase_09 AC 38 ms
52,576 KB
testcase_10 AC 39 ms
53,376 KB
testcase_11 AC 41 ms
54,232 KB
testcase_12 AC 42 ms
54,456 KB
testcase_13 AC 52 ms
63,136 KB
testcase_14 AC 55 ms
64,028 KB
testcase_15 AC 53 ms
63,380 KB
testcase_16 AC 53 ms
63,996 KB
testcase_17 AC 149 ms
155,644 KB
testcase_18 AC 147 ms
155,628 KB
testcase_19 AC 148 ms
155,656 KB
testcase_20 AC 555 ms
158,520 KB
testcase_21 AC 599 ms
159,016 KB
testcase_22 AC 439 ms
157,064 KB
testcase_23 AC 452 ms
157,864 KB
testcase_24 AC 447 ms
158,320 KB
testcase_25 AC 452 ms
158,356 KB
testcase_26 AC 732 ms
160,496 KB
testcase_27 AC 733 ms
160,352 KB
testcase_28 AC 148 ms
154,628 KB
testcase_29 AC 593 ms
147,412 KB
testcase_30 AC 163 ms
149,236 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

h,w = map(int,input().split())
s = [input() for i in range(h)]

# BFSっぽいのをする. (ただし少し特殊)

mada = [(0,0)]
t = [0] * h*w
t[0] = 1
while mada:
	k = 26
	for x, y in mada:
		if x < h-1:
			k = min(k, ord(s[x+1][y]) - ord("a"))
		if y < w-1:
			k = min(k, ord(s[x][y+1]) - ord("a"))
	fr = []
	for x, y in mada:
		if x < h-1:
			if ord(s[x+1][y]) - ord("a") == k:
				if t[(x+1)*w + y] == 0:
					fr.append((x+1, y))
					t[(x+1)*w + y] = 1
		if y < w-1:
			if ord(s[x][y+1]) - ord("a") == k:
				if t[x*w + y+1] == 0:
					fr.append((x, y+1))
					t[x*w + y+1] = 1
	mada = fr

ans = []
x = h-1; y = w-1
while x > 0 or y > 0:
	if x > 0 and t[(x-1)*w + y] == 1:
		ans.append(s[x][y])
		x -= 1
	elif y > 0 and t[x*w + y-1] == 1:
		ans.append(s[x][y])
		y -= 1

ans.append(s[0][0])

print("".join(ans[::-1]))
0