結果

問題 No.225 文字列変更(medium)
ユーザー shoutmshoutm
提出日時 2019-05-01 13:22:11
言語 Ruby
(3.3.0)
結果
AC  
実行時間 624 ms / 5,000 ms
コード長 582 bytes
コンパイル時間 489 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 22,400 KB
最終ジャッジ日時 2024-06-10 03:36:07
合計ジャッジ時間 9,697 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 303 ms
16,000 KB
testcase_01 AC 445 ms
18,944 KB
testcase_02 AC 78 ms
12,416 KB
testcase_03 AC 78 ms
12,288 KB
testcase_04 AC 75 ms
12,416 KB
testcase_05 AC 75 ms
12,160 KB
testcase_06 AC 73 ms
12,416 KB
testcase_07 AC 73 ms
12,160 KB
testcase_08 AC 75 ms
12,288 KB
testcase_09 AC 74 ms
12,288 KB
testcase_10 AC 76 ms
12,160 KB
testcase_11 AC 76 ms
12,288 KB
testcase_12 AC 580 ms
21,632 KB
testcase_13 AC 624 ms
22,272 KB
testcase_14 AC 612 ms
22,400 KB
testcase_15 AC 581 ms
21,632 KB
testcase_16 AC 585 ms
22,400 KB
testcase_17 AC 579 ms
21,504 KB
testcase_18 AC 571 ms
21,376 KB
testcase_19 AC 580 ms
22,144 KB
testcase_20 AC 551 ms
21,504 KB
testcase_21 AC 579 ms
22,016 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

#!/usr/bin/env ruby

n, m = gets.split(' ').map &:to_i
S = gets.chomp
T = gets.chomp

# dp[i+1][j+1]: S i文字目までを変換してT[j]にするための手数と定義する
# S: pirikapirirara
# T: poporinapeperuto

dp = []

# Initialization
(0..n).each do |i|
  (0..m).each do |j|
    dp[i] ||= []
    dp[i][j] = j if i == 0
    dp[i][j] = i if j == 0
  end
end

(0...n).each do |i|
  (0...m).each do |j|
    c1 = S[i] == T[j] ? dp[i][j] : dp[i][j] + 1
    c2 = dp[i][j+1] + 1
    c3 = dp[i+1][j] + 1

    dp[i+1][j+1] = [c1,c2,c3].min
  end
end

puts dp[S.length][T.length]
0