結果

問題 No.225 文字列変更(medium)
ユーザー simansiman
提出日時 2016-03-31 00:10:34
言語 Ruby
(3.3.0)
結果
AC  
実行時間 707 ms / 5,000 ms
コード長 543 bytes
コンパイル時間 50 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 19,584 KB
最終ジャッジ日時 2024-06-08 02:06:54
合計ジャッジ時間 9,462 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 314 ms
14,976 KB
testcase_01 AC 480 ms
17,152 KB
testcase_02 AC 80 ms
12,160 KB
testcase_03 AC 81 ms
12,288 KB
testcase_04 AC 78 ms
12,288 KB
testcase_05 AC 79 ms
12,160 KB
testcase_06 AC 79 ms
12,288 KB
testcase_07 AC 79 ms
12,160 KB
testcase_08 AC 79 ms
12,160 KB
testcase_09 AC 80 ms
12,288 KB
testcase_10 AC 83 ms
12,160 KB
testcase_11 AC 83 ms
12,288 KB
testcase_12 AC 636 ms
19,072 KB
testcase_13 AC 707 ms
19,584 KB
testcase_14 AC 686 ms
19,328 KB
testcase_15 AC 665 ms
18,944 KB
testcase_16 AC 649 ms
19,072 KB
testcase_17 AC 646 ms
19,200 KB
testcase_18 AC 634 ms
18,816 KB
testcase_19 AC 654 ms
19,200 KB
testcase_20 AC 618 ms
18,688 KB
testcase_21 AC 643 ms
19,072 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

class Yukicoder
  def initialize
    n, m = gets.chomp.split.map(&:to_i)
    s = gets.chomp
    t = gets.chomp
    dp = Array.new(n+2){ Array.new(m+2, [n,m].max)}

    dp[0][0] = 0

    0.upto(n) do |i|
      0.upto(m) do |j|
        if s[i] == t[j]
          dp[i+1][j+1] = [dp[i+1][j+1], dp[i][j]].min
        else
          dp[i+1][j+1] = [dp[i+1][j+1], dp[i][j]+1].min
        end
        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

    p dp[n][m]
  end
end

Yukicoder.new
0