比赛 20090916练习赛 评测结果 AAAAAAAAAA
题目名称 字符串的距离 最终得分 100
用户昵称 raywzy 运行时间 0.193 s
代码语言 C++ 内存使用 18.55 MiB
提交时间 2013-11-07 20:05:15
显示代码纯文本
#include<fstream>
#include<string>
#include<cmath>
#include<cstdlib>
#include<cstring>
using namespace std;
ifstream fin("blast.in");
ofstream fout("blast.out");
int K;
char a[2001],b[2001];
string A,B;
int f[2001][2001];
int min(int a,int b,int c)
{
	int temp;
	if(a>b) temp=b; else temp=a;
	if(temp>c) return c;else return temp;
}
int main()
{
	int LA,LB;
	fin>>A>>B>>K;
	LA=A.length();LB=B.length();
	int i,j;
	int temp=0;
	for(i=1;i<=LA;i++)
	{
		f[i][0]=i*K;
		a[i]=A[i-1];
	}
	for(i=1;i<=LB;i++)
	{
		f[0][i]=i*K;
		b[i]=B[i-1];
	}
	for(i=1;i<=LA;i++)
		for(j=1;j<=LB;j++)
		{
				f[i][j]=min(f[i-1][j]+K,f[i][j-1]+K,f[i-1][j-1]+abs(int(a[i])-int(b[j])));
		}
	fout<<f[LA][LB]<<endl;
	return 0;
}