[codechef] Magical Transformation(dp, 테크닉 문제)
He decided that the operations that maybe performed on the strings could be: Inserting a character at any position, removing an existing character, modifying an existing character and swapping 2 adjacent characters. Each operation is counted as one move. While doing this he noticed that there is more than one way to complete this transformation. He wants your help to write a program that can find out the minimum number of moves required transform a given word into another given word.
Input
The first line contains a single integer T , the number of test cases. T test cases follow.
The only line of each test case contains 2 strings (contains only lower case letters), separated by a single space.
Output
For each test case, output a single line containing an integer which denotes the minimum number of moves required transform a given word into another given word.
Constraints
1 ≤ T ≤ 1000
1 ≤ |S| ≤ 100
Example
Input:
1
smatr smart
Output:
1
http://www.codechef.com/problems/MOUSCH01
Inserting a character at any position, removing an existing character, modifying an existing character and swapping 2 adjacent characters
한 문자열을 다른 문자열로 바꾸는 데 필요한 최소 작업 수를 물어보십시오.
dp[i][j]는 A의 전 i위 B의 전 j위를 찾을 때 필요한 최소 조작수를 나타낸다.핵심 코드는 다음과 같습니다.
dp[i][j]=min(min(dp[i-1][j], dp[i][j-1]), dp[i-1][j-1])+1은 먼저 세 가지 조작을 고려한다.dp[i-1][j-1]은 j의 위치를 수정하는 값이고, dp[i-1][j]는 i
#include<iostream>
#include<algorithm>
#include<string>
#include<map>
#include<vector>
#include<cmath>
#include<string.h>
#include<stdlib.h>
#include<cstdio>
#define ll long long
using namespace std;
int dp[101][101];
int last1[28],last2[28];
int main(){
int t;
cin>>t;
while(t--){
char x[105],y[105];
cin>>x>>y;
int len1=strlen(x),len2=strlen(y);
for(int i=len1;i>=1;--i)
x[i]=x[i-1];
for(int i=len2;i>=1;--i)
y[i]=y[i-1];
for(int i=0;i<=len1;++i)
dp[i][0]=i;
for(int i=1;i<=len2;++i)
dp[0][i]=i;
memset(last1,-1,sizeof(last1));
for(int i=1;i<=len1;++i){
memset(last2,-1,sizeof(last2));
for(int j=1;j<=len2;++j){
if(x[i]==y[j])
dp[i][j]=dp[i-1][j-1];
else{
dp[i][j]=min(min(dp[i-1][j],dp[i][j-1]),dp[i-1][j-1])+1;
if(last1[y[j]-'a']>0&&last2[x[i]-'a']>0){
if(last1[y[j]-'a']==i-1) // [swapping 2 adjacent characters]
dp[i][j]=min(dp[i][j],dp[last1[y[j]-'a']-1][last2[x[i]-'a']-1]+j-last2[x[i]-'a']-1+1);
else if(last2[x[i]-'a']==j-1)
dp[i][j]=min(dp[i][j],dp[last1[y[j]-'a']-1][last2[x[i]-'a']-1]+i-last1[y[j]-'a']-1+1);
}
}
last2[y[j]-'a']=j;
}
last1[x[i]-'a']=i;
}
cout<<dp[len1][len2]<<endl;
}
return 0;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.