結果

問題 No.225 文字列変更(medium)
ユーザー periberryperiberry
提出日時 2018-05-31 17:52:26
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 434 bytes
コンパイル時間 201 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 19,712 KB
最終ジャッジ日時 2024-06-30 08:35:48
合計ジャッジ時間 9,933 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 514 ms
17,152 KB
testcase_02 WA -
testcase_03 AC 89 ms
12,160 KB
testcase_04 AC 88 ms
12,416 KB
testcase_05 AC 89 ms
12,160 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 91 ms
12,288 KB
testcase_10 AC 88 ms
12,160 KB
testcase_11 WA -
testcase_12 AC 685 ms
19,072 KB
testcase_13 AC 739 ms
19,712 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 697 ms
18,944 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 697 ms
19,200 KB
testcase_20 WA -
testcase_21 AC 693 ms
19,072 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

def diff
  n, m = gets.chomp.split(" ").map(&:to_i)
  s = gets.chomp
  t = gets.chomp
  inf = 100000007
  dp = Array.new(n+1){Array.new(m+1, inf)}
  dp[0][0] = 0

  n.times do |i|
    m.times do |j|
      dp[i+1][j+1] = s[i] == t[j] ? [dp[i+1][j+1], dp[i][j]].min : [dp[i+1][j+1], dp[i][j]+1 ].min
      dp[i+1][j] = [dp[i+1][j], dp[i][j]+1].min
      dp[i][j+1] = [dp[i][j+1], dp[i][j]+1].min
    end
  end

  dp[n][m]
end

puts diff
0