Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
116170 毛泓博(做题专用,大号Fess) 编辑距离 C++ 通过 100 0 MS 252 KB 410 2023-12-16 08:56:13

Tests(4/4):


#include<bits/stdc++.h> using namespace std; int a[202][202],m,n; char s1[202],s2[202]; int main() { cin>>s1>>s2; m=strlen(s1); n=strlen(s2); for(int i=1;i<=m;i++) a[i][0]=i; for(int i=1;i<=n;i++) a[0][i]=i; for(int i=1;i<=m;i++) for(int j=1;j<=n;j++) { if(s1[i-1]==s2[j-1]) a[i][j]=a[i-1][j-1]; else a[i][j]=min(min(a[i-1][j],a[i][j-1]),a[i-1][j-1])+1; } cout<<a[m][n]; }


测评信息: