結果

問題 No.2064 Smallest Sequence on Grid
ユーザー nohakai3nohakai3
提出日時 2022-09-05 22:03:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,508 ms / 3,000 ms
コード長 488 bytes
コンパイル時間 229 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 120,040 KB
最終ジャッジ日時 2024-11-20 23:00:45
合計ジャッジ時間 19,645 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,696 KB
testcase_01 AC 40 ms
52,620 KB
testcase_02 AC 40 ms
54,056 KB
testcase_03 AC 40 ms
53,104 KB
testcase_04 AC 40 ms
53,212 KB
testcase_05 AC 41 ms
53,052 KB
testcase_06 AC 39 ms
52,572 KB
testcase_07 AC 35 ms
53,312 KB
testcase_08 AC 36 ms
52,736 KB
testcase_09 AC 38 ms
54,004 KB
testcase_10 AC 39 ms
54,660 KB
testcase_11 AC 45 ms
61,536 KB
testcase_12 AC 47 ms
62,124 KB
testcase_13 AC 51 ms
63,384 KB
testcase_14 AC 52 ms
65,712 KB
testcase_15 AC 52 ms
65,024 KB
testcase_16 AC 54 ms
65,064 KB
testcase_17 AC 126 ms
85,048 KB
testcase_18 AC 123 ms
84,712 KB
testcase_19 AC 126 ms
84,676 KB
testcase_20 AC 1,619 ms
103,516 KB
testcase_21 AC 1,811 ms
107,196 KB
testcase_22 AC 1,208 ms
95,704 KB
testcase_23 AC 1,289 ms
102,740 KB
testcase_24 AC 1,300 ms
102,840 KB
testcase_25 AC 1,335 ms
102,888 KB
testcase_26 AC 2,508 ms
120,040 KB
testcase_27 AC 2,439 ms
119,760 KB
testcase_28 AC 119 ms
84,656 KB
testcase_29 AC 2,073 ms
109,076 KB
testcase_30 AC 133 ms
84,756 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H,W=map(int,input().split())
L=list()
for i in range(H):
  s=input()
  L.append(s)
ans=list()
ans.append(L[0][0])
A=[0,0]
def f(x,y):
  if 0<=x<H and 0<=y<W:
    return True
  return False
stack=[[0,0]]
for i in range(H+W-2):
  s="z"
  S=set()
  while stack:
    a,b=stack.pop()
    for da,db in [[1,0],[0,1]]:
      if f(a+da,b+db):
        s=min(s,L[a+da][b+db])
        S.add((a+da,b+db))
  for a,b in S:
    if L[a][b]==s:
      stack.append((a,b))
  ans.append(s)
print("".join(ans))
0