結果

問題 No.2064 Smallest Sequence on Grid
ユーザー ytftytft
提出日時 2022-09-03 19:40:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,491 ms / 3,000 ms
コード長 567 bytes
コンパイル時間 416 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 102,656 KB
最終ジャッジ日時 2024-11-17 10:38:44
合計ジャッジ時間 13,520 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,224 KB
testcase_01 AC 39 ms
52,096 KB
testcase_02 AC 38 ms
51,712 KB
testcase_03 AC 39 ms
51,840 KB
testcase_04 AC 39 ms
51,840 KB
testcase_05 AC 39 ms
51,328 KB
testcase_06 AC 40 ms
51,840 KB
testcase_07 AC 39 ms
51,456 KB
testcase_08 AC 39 ms
52,224 KB
testcase_09 AC 40 ms
52,224 KB
testcase_10 AC 40 ms
52,352 KB
testcase_11 AC 43 ms
52,864 KB
testcase_12 AC 44 ms
53,120 KB
testcase_13 AC 53 ms
62,208 KB
testcase_14 AC 54 ms
64,128 KB
testcase_15 AC 53 ms
63,488 KB
testcase_16 AC 55 ms
63,616 KB
testcase_17 AC 119 ms
85,248 KB
testcase_18 AC 119 ms
85,248 KB
testcase_19 AC 118 ms
84,736 KB
testcase_20 AC 1,040 ms
94,976 KB
testcase_21 AC 1,142 ms
96,444 KB
testcase_22 AC 765 ms
91,648 KB
testcase_23 AC 806 ms
93,696 KB
testcase_24 AC 813 ms
93,824 KB
testcase_25 AC 801 ms
93,440 KB
testcase_26 AC 1,487 ms
102,656 KB
testcase_27 AC 1,491 ms
102,400 KB
testcase_28 AC 120 ms
84,864 KB
testcase_29 AC 1,349 ms
95,744 KB
testcase_30 AC 130 ms
84,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=lambda:sys.stdin.readline().rstrip()
def compare(a,b):
	return a if a<b else b
H,W=map(int,input().split())
S=[input() for i in range(H)]
ans=S[0][0]
pointer=[0]
for j in range(H+W-2):
	cand='{'
	new=set()
	for k in pointer:
		i=[k//W,k%W]
		if i[0]<H-1:
			cand=compare(cand,S[i[0]+1][i[1]])
		if i[1]<W-1:
			cand=compare(cand,S[i[0]][i[1]+1])
	for k in pointer:
		i=[k//W,k%W]
		if i[0]<H-1 and S[i[0]+1][i[1]]==cand:
			new.add((i[0]+1)*W+i[1])
		if i[1]<W-1 and S[i[0]][i[1]+1]==cand:
			new.add(i[0]*W+i[1]+1)
	pointer=new
	ans+=cand
print(ans)
0