結果

問題 No.225 文字列変更(medium)
ユーザー periberryperiberry
提出日時 2018-05-31 17:44:02
言語 Ruby
(3.3.0)
結果
RE  
実行時間 -
コード長 444 bytes
コンパイル時間 53 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 20,096 KB
最終ジャッジ日時 2024-06-30 08:34:05
合計ジャッジ時間 9,987 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 AC 98 ms
19,584 KB
testcase_03 AC 96 ms
19,840 KB
testcase_04 AC 97 ms
19,712 KB
testcase_05 AC 96 ms
19,584 KB
testcase_06 AC 98 ms
19,712 KB
testcase_07 AC 96 ms
19,712 KB
testcase_08 AC 96 ms
19,584 KB
testcase_09 AC 97 ms
19,584 KB
testcase_10 AC 98 ms
19,712 KB
testcase_11 AC 97 ms
19,584 KB
testcase_12 AC 701 ms
19,840 KB
testcase_13 AC 755 ms
19,968 KB
testcase_14 AC 738 ms
20,096 KB
testcase_15 AC 708 ms
19,840 KB
testcase_16 AC 714 ms
19,840 KB
testcase_17 AC 737 ms
19,840 KB
testcase_18 AC 716 ms
19,968 KB
testcase_19 AC 745 ms
20,096 KB
testcase_20 AC 710 ms
19,968 KB
testcase_21 AC 726 ms
19,840 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(1000){Array.new(1000, inf)}
  dp[0][0] = 0

  0.upto n do |i|
    0.upto m 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