結果

問題 No.225 文字列変更(medium)
ユーザー ayaoniayaoni
提出日時 2020-12-28 09:42:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 99 ms / 5,000 ms
コード長 832 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 83,192 KB
最終ジャッジ日時 2024-10-02 10:23:10
合計ジャッジ時間 2,652 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 83 ms
78,904 KB
testcase_01 AC 87 ms
80,856 KB
testcase_02 AC 39 ms
51,968 KB
testcase_03 AC 39 ms
52,608 KB
testcase_04 AC 41 ms
52,736 KB
testcase_05 AC 43 ms
51,968 KB
testcase_06 AC 41 ms
52,352 KB
testcase_07 AC 44 ms
51,840 KB
testcase_08 AC 41 ms
52,224 KB
testcase_09 AC 41 ms
52,096 KB
testcase_10 AC 41 ms
52,352 KB
testcase_11 AC 39 ms
52,352 KB
testcase_12 AC 98 ms
82,780 KB
testcase_13 AC 92 ms
83,192 KB
testcase_14 AC 93 ms
83,072 KB
testcase_15 AC 90 ms
82,944 KB
testcase_16 AC 95 ms
82,816 KB
testcase_17 AC 92 ms
82,620 KB
testcase_18 AC 92 ms
82,728 KB
testcase_19 AC 92 ms
82,704 KB
testcase_20 AC 91 ms
82,360 KB
testcase_21 AC 99 ms
83,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10**7)
def I(): return int(sys.stdin.readline().rstrip())
def MI(): return map(int,sys.stdin.readline().rstrip().split())
def LI(): return list(map(int,sys.stdin.readline().rstrip().split()))
def LI2(): return list(map(int,sys.stdin.readline().rstrip()))
def U(): return sys.stdin.readline().rstrip()
def LS(): return list(sys.stdin.readline().rstrip().split())
def LS2(): return list(sys.stdin.readline().rstrip())


N,M = MI()
S = ' '+U()
T = ' '+U()

dp = [[10000]*(M+1) for _ in range(N+1)]
dp[0][0] = 0
for i in range(1,N+1):
    dp[i][0] = i
for j in range(1,M+1):
    dp[0][j] = j

for i in range(1,N+1):
    for j in range(1,M+1):
        if S[i] == T[j]:
            dp[i][j] = dp[i-1][j-1]
        else:
            dp[i][j] = 1+min(dp[i-1][j],dp[i][j-1],dp[i-1][j-1])

print(dp[-1][-1])
0