結果

問題 No.2064 Smallest Sequence on Grid
ユーザー kozykozy
提出日時 2022-09-02 22:15:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,328 ms / 3,000 ms
コード長 488 bytes
コンパイル時間 263 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 119,632 KB
最終ジャッジ日時 2024-11-16 03:58:47
合計ジャッジ時間 17,425 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,056 KB
testcase_01 AC 33 ms
52,704 KB
testcase_02 AC 32 ms
52,820 KB
testcase_03 AC 33 ms
52,336 KB
testcase_04 AC 33 ms
52,616 KB
testcase_05 AC 33 ms
52,508 KB
testcase_06 AC 33 ms
52,272 KB
testcase_07 AC 34 ms
52,524 KB
testcase_08 AC 36 ms
54,092 KB
testcase_09 AC 33 ms
52,532 KB
testcase_10 AC 34 ms
52,884 KB
testcase_11 AC 42 ms
61,852 KB
testcase_12 AC 41 ms
62,104 KB
testcase_13 AC 46 ms
64,532 KB
testcase_14 AC 48 ms
66,756 KB
testcase_15 AC 48 ms
64,488 KB
testcase_16 AC 51 ms
64,964 KB
testcase_17 AC 113 ms
84,548 KB
testcase_18 AC 114 ms
84,796 KB
testcase_19 AC 114 ms
84,548 KB
testcase_20 AC 1,503 ms
103,312 KB
testcase_21 AC 1,656 ms
106,756 KB
testcase_22 AC 1,084 ms
95,824 KB
testcase_23 AC 1,128 ms
102,780 KB
testcase_24 AC 1,132 ms
102,468 KB
testcase_25 AC 1,178 ms
102,740 KB
testcase_26 AC 2,190 ms
119,536 KB
testcase_27 AC 2,328 ms
119,632 KB
testcase_28 AC 118 ms
84,940 KB
testcase_29 AC 1,876 ms
108,956 KB
testcase_30 AC 118 ms
84,600 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