結果

問題 No.2064 Smallest Sequence on Grid
ユーザー flygonflygon
提出日時 2022-09-18 23:24:42
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 664 bytes
コンパイル時間 325 ms
コンパイル使用メモリ 82,280 KB
実行使用メモリ 848,308 KB
最終ジャッジ日時 2024-06-01 15:50:40
合計ジャッジ時間 6,820 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,968 KB
testcase_01 AC 41 ms
52,352 KB
testcase_02 AC 41 ms
52,096 KB
testcase_03 AC 41 ms
51,968 KB
testcase_04 AC 41 ms
51,968 KB
testcase_05 AC 41 ms
52,096 KB
testcase_06 AC 41 ms
52,096 KB
testcase_07 RE -
testcase_08 RE -
testcase_09 AC 39 ms
52,608 KB
testcase_10 RE -
testcase_11 MLE -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
権限があれば一括ダウンロードができます

ソースコード

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"
  if l == [(h-1, w-1)]: break
  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:
      if s[i][j+1] == mn:
        new.append((i,j+1))
    elif j == w-1:
      if 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
print(ans)
  


     
0