結果

問題 No.225 文字列変更(medium)
ユーザー liktastarliktastar
提出日時 2020-11-04 23:12:25
言語 Ruby
(3.3.0)
結果
AC  
実行時間 858 ms / 5,000 ms
コード長 651 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 22,272 KB
最終ジャッジ日時 2024-07-22 10:28:33
合計ジャッジ時間 11,857 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 393 ms
16,000 KB
testcase_01 AC 605 ms
18,944 KB
testcase_02 AC 91 ms
12,160 KB
testcase_03 AC 91 ms
12,032 KB
testcase_04 AC 94 ms
12,160 KB
testcase_05 AC 91 ms
12,032 KB
testcase_06 AC 91 ms
12,032 KB
testcase_07 AC 91 ms
12,032 KB
testcase_08 AC 91 ms
12,032 KB
testcase_09 AC 92 ms
12,288 KB
testcase_10 AC 94 ms
12,160 KB
testcase_11 AC 93 ms
12,032 KB
testcase_12 AC 805 ms
21,632 KB
testcase_13 AC 858 ms
22,144 KB
testcase_14 AC 849 ms
22,272 KB
testcase_15 AC 809 ms
21,632 KB
testcase_16 AC 815 ms
22,272 KB
testcase_17 AC 820 ms
21,504 KB
testcase_18 AC 796 ms
21,376 KB
testcase_19 AC 814 ms
22,016 KB
testcase_20 AC 780 ms
21,504 KB
testcase_21 AC 815 ms
21,888 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:1: warning: assigned but unused variable - n
Main.rb:1: warning: assigned but unused variable - m
Syntax OK

ソースコード

diff #

n, m = gets.chomp.split(" ").map(&:to_i)
s = gets.chomp
t = gets.chomp

INF = 10 ** 9
dp = []
(s.length + 1).times do |i|
  dp[i] = []
  (t.length + 1).times do |j|
    dp[i][j] = INF
  end
end

dp[0][0] = 0
(s.length + 1).times do |i|
  (t.length + 1).times do |j|
    # 変更
    if i > 0 && j > 0
      if s[i - 1] == t[j - 1]
        dp[i][j] = [dp[i][j], dp[i-1][j-1]].min
      else
        dp[i][j] = [dp[i][j], dp[i-1][j-1] + 1].min
      end
    end
    # 削除
    if i > 0
      dp[i][j] = [dp[i][j], dp[i-1][j] + 1].min
    end
    # 挿入
    if j > 0
      dp[i][j] = [dp[i][j], dp[i][j-1] + 1].min
    end
  end
end

puts dp[-1][-1]
0