結果

問題 No.2064 Smallest Sequence on Grid
ユーザー flygonflygon
提出日時 2022-09-18 23:20:42
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 651 bytes
コンパイル時間 396 ms
コンパイル使用メモリ 82,600 KB
実行使用メモリ 849,660 KB
最終ジャッジ日時 2024-12-22 01:50:14
合計ジャッジ時間 63,663 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
59,892 KB
testcase_01 AC 37 ms
58,784 KB
testcase_02 RE -
testcase_03 AC 38 ms
348,800 KB
testcase_04 AC 38 ms
58,784 KB
testcase_05 AC 40 ms
450,092 KB
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 AC 38 ms
52,224 KB
testcase_10 RE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 MLE -
testcase_15 MLE -
testcase_16 MLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 MLE -
testcase_21 MLE -
testcase_22 MLE -
testcase_23 MLE -
testcase_24 MLE -
testcase_25 MLE -
testcase_26 MLE -
testcase_27 MLE -
testcase_28 AC 126 ms
85,356 KB
testcase_29 MLE -
testcase_30 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

h,w = map(int,input().split())
s = [input() for i in range(h)]
now = 0
l = [(0,0)]
ans = s[0][0]
while now < h+w-1:
  new = []
  mn = "z"
  for i,j in l:
    if i == h-1:
      mn = min(mn, s[i][j+1])
    elif j == w-1:
      mn = min(mn, s[i+1][j])
    else:
      mn = min(mn, s[i][j+1], s[i+1][j])
  for i,j in l:
    if i == h-1 and s[i][j+1] == mn:
      new.append((i,j+1))
    elif j == w-1 and s[i+1][j] == mn:
      new.append((i+1,j))
    else:
      if s[i][j+1] == mn:
        new.append((i,j+1))
      if s[i+1][j] == mn:
        new.append((i+1,j))
  l = new
  
  now += 1
  ans += mn
  if l == [(h-1, w-1)]: break
print(ans)
  


     
0