結果

問題 No.2064 Smallest Sequence on Grid
ユーザー shobonvipshobonvip
提出日時 2022-09-02 21:58:58
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 822 bytes
コンパイル時間 286 ms
コンパイル使用メモリ 82,156 KB
実行使用メモリ 208,544 KB
最終ジャッジ日時 2024-11-16 03:23:44
合計ジャッジ時間 59,762 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
60,836 KB
testcase_01 AC 39 ms
60,448 KB
testcase_02 AC 39 ms
60,920 KB
testcase_03 AC 38 ms
111,172 KB
testcase_04 AC 38 ms
59,148 KB
testcase_05 AC 39 ms
111,324 KB
testcase_06 AC 38 ms
60,280 KB
testcase_07 AC 37 ms
112,104 KB
testcase_08 AC 39 ms
59,504 KB
testcase_09 AC 39 ms
112,788 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 WA -
testcase_15 WA -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 WA -
testcase_25 TLE -
testcase_26 AC 151 ms
162,148 KB
testcase_27 WA -
testcase_28 AC 142 ms
155,140 KB
testcase_29 AC 143 ms
143,084 KB
testcase_30 TLE -
権限があれば一括ダウンロードができます

ソースコード

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 i 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