結果

問題 No.2064 Smallest Sequence on Grid
ユーザー flygonflygon
提出日時 2022-09-18 23:27:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,790 ms / 3,000 ms
コード長 658 bytes
コンパイル時間 405 ms
コンパイル使用メモリ 82,264 KB
実行使用メモリ 105,980 KB
最終ジャッジ日時 2024-12-22 01:52:16
合計ジャッジ時間 16,036 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,968 KB
testcase_01 AC 36 ms
52,224 KB
testcase_02 AC 37 ms
51,968 KB
testcase_03 AC 37 ms
51,840 KB
testcase_04 AC 35 ms
52,096 KB
testcase_05 AC 32 ms
51,968 KB
testcase_06 AC 35 ms
51,840 KB
testcase_07 AC 35 ms
52,224 KB
testcase_08 AC 35 ms
52,352 KB
testcase_09 AC 37 ms
52,096 KB
testcase_10 AC 37 ms
52,608 KB
testcase_11 AC 38 ms
53,376 KB
testcase_12 AC 39 ms
52,992 KB
testcase_13 AC 45 ms
61,952 KB
testcase_14 AC 50 ms
64,384 KB
testcase_15 AC 48 ms
63,488 KB
testcase_16 AC 49 ms
64,000 KB
testcase_17 AC 121 ms
85,632 KB
testcase_18 AC 120 ms
85,376 KB
testcase_19 AC 128 ms
85,848 KB
testcase_20 AC 1,359 ms
98,176 KB
testcase_21 AC 1,471 ms
99,328 KB
testcase_22 AC 933 ms
93,380 KB
testcase_23 AC 944 ms
95,984 KB
testcase_24 AC 938 ms
95,744 KB
testcase_25 AC 985 ms
96,064 KB
testcase_26 AC 1,790 ms
105,980 KB
testcase_27 AC 1,780 ms
105,876 KB
testcase_28 AC 116 ms
85,332 KB
testcase_29 AC 1,443 ms
102,144 KB
testcase_30 AC 123 ms
85,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

h,w = map(int,input().split())
s = [input() for i in range(h)]
now = 0
l = set([(0,0)])
ans = s[0][0]
while now < h+w-1:
  new = set()
  mn = "z"
  if (h-1, w-1) in l: 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.add((i,j+1))
    elif j == w-1:
      if s[i+1][j] == mn:
        new.add((i+1,j))
    else:
      if s[i][j+1] == mn:
        new.add((i,j+1))
      if s[i+1][j] == mn:
        new.add((i+1,j))
  l = new
  now += 1
  ans += mn
print(ans)
  


     
0