結果

問題 No.225 文字列変更(medium)
ユーザー nebukuro09nebukuro09
提出日時 2016-09-23 16:13:48
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 138 ms / 5,000 ms
コード長 373 bytes
コンパイル時間 1,544 ms
コンパイル使用メモリ 76,416 KB
実行使用メモリ 79,872 KB
最終ジャッジ日時 2024-06-06 19:34:35
合計ジャッジ時間 4,610 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 100 ms
79,616 KB
testcase_01 AC 106 ms
79,232 KB
testcase_02 AC 75 ms
75,648 KB
testcase_03 AC 77 ms
75,520 KB
testcase_04 AC 78 ms
75,648 KB
testcase_05 AC 75 ms
75,648 KB
testcase_06 AC 76 ms
75,648 KB
testcase_07 AC 79 ms
75,392 KB
testcase_08 AC 78 ms
75,520 KB
testcase_09 AC 77 ms
75,520 KB
testcase_10 AC 79 ms
75,392 KB
testcase_11 AC 77 ms
75,648 KB
testcase_12 AC 122 ms
79,872 KB
testcase_13 AC 118 ms
79,616 KB
testcase_14 AC 117 ms
79,872 KB
testcase_15 AC 118 ms
79,488 KB
testcase_16 AC 118 ms
79,488 KB
testcase_17 AC 124 ms
79,744 KB
testcase_18 AC 138 ms
79,360 KB
testcase_19 AC 120 ms
79,872 KB
testcase_20 AC 120 ms
79,360 KB
testcase_21 AC 120 ms
79,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, raw_input().split())
s1, s2 = raw_input(), raw_input()

dist = [[0 for i in xrange(M+1)] for j in xrange(N+1)]

for i in xrange(N+1):
    dist[i][0] = i
for j in xrange(M+1):
    dist[0][j] = j
for i in xrange(1, N+1):
    for j in xrange(1, M+1):
        dist[i][j] = min(dist[i-1][j]+1, dist[i][j-1]+1, dist[i-1][j-1]+(s1[i-1]!=s2[j-1]))
print dist[N][M]
0