結果

問題 No.225 文字列変更(medium)
ユーザー ffutureffuture
提出日時 2020-09-26 22:09:38
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 847 ms / 5,000 ms
コード長 691 bytes
コンパイル時間 78 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 42,496 KB
最終ジャッジ日時 2024-06-29 22:14:47
合計ジャッジ時間 9,735 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 340 ms
22,144 KB
testcase_01 AC 543 ms
32,128 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 AC 27 ms
10,624 KB
testcase_04 AC 28 ms
10,880 KB
testcase_05 AC 27 ms
10,624 KB
testcase_06 AC 26 ms
10,752 KB
testcase_07 AC 27 ms
10,752 KB
testcase_08 AC 27 ms
10,752 KB
testcase_09 AC 26 ms
10,624 KB
testcase_10 AC 26 ms
10,752 KB
testcase_11 AC 26 ms
10,624 KB
testcase_12 AC 709 ms
35,840 KB
testcase_13 AC 847 ms
42,496 KB
testcase_14 AC 762 ms
40,576 KB
testcase_15 AC 618 ms
25,984 KB
testcase_16 AC 761 ms
40,192 KB
testcase_17 AC 639 ms
25,984 KB
testcase_18 AC 734 ms
30,976 KB
testcase_19 AC 762 ms
40,192 KB
testcase_20 AC 721 ms
33,024 KB
testcase_21 AC 810 ms
38,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def min(a,b,c):
    if a>b:
        if b>c:
            return c
        else:
            return b
    else:
        if a>c:
            return c
        else:
            return a

n,m = map(int,input().split())
S=input()
T=input()
inf=float('inf')
a=[]
for i in range(0,n+1):
    a.append([inf]*(m+1))
a[0][0]=0
for i in range(0,n+1):
    for j in range(0,m+1):
        if j==0 and i==0:
            continue
        elif j==0:
            a[i][j]=a[i-1][j]+1
        elif i==0:
            a[i][j]=a[i][j-1]+1
        else:
            if S[i-1]==T[j-1]:
                a[i][j]=a[i-1][j-1]
            else:
                a[i][j]=min(a[i][j-1],a[i-1][j],a[i-1][j-1])+1

print(a[n][m])
0