結果

問題 No.225 文字列変更(medium)
ユーザー Kmcode1Kmcode1
提出日時 2015-06-12 22:30:04
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 24 ms / 5,000 ms
コード長 1,116 bytes
コンパイル時間 645 ms
コンパイル使用メモリ 90,812 KB
実行使用メモリ 8,388 KB
最終ジャッジ日時 2024-06-06 17:02:57
合計ジャッジ時間 1,609 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
5,376 KB
testcase_01 AC 15 ms
8,388 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 21 ms
7,936 KB
testcase_13 AC 21 ms
8,288 KB
testcase_14 AC 20 ms
8,304 KB
testcase_15 AC 24 ms
7,808 KB
testcase_16 AC 20 ms
8,192 KB
testcase_17 AC 24 ms
8,000 KB
testcase_18 AC 22 ms
7,680 KB
testcase_19 AC 20 ms
8,064 KB
testcase_20 AC 21 ms
7,936 KB
testcase_21 AC 21 ms
7,996 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<cstdio>
#include<cstring>
#include<string>
#include<cctype>
#include<cstdlib>
#include<algorithm>
#include<bitset>
#include<vector>
#include<list>
#include<deque>
#include<queue>
#include<map>
#include<set>
#include<stack>
#include<cmath>
#include<sstream>
#include<fstream>
#include<iomanip>
#include<ctime>
#include<complex>
#include<functional>
#include<climits>
#include<cassert>
#include<iterator>
using namespace std;

int n;
int m;

int dp[1002][1002];
string s;
string t;
bool use[1002][1002];
inline int dfs(int a, int b){
	if (a == s.size() && b == t.size()){
		return 0;
	}
	if (a == s.size()){
		return t.size() - b;
	}
	if (b == t.size()){
		return s.size() - a;
	}
	if (use[a][b]){
		return dp[a][b];
	}
	use[a][b] = true;
	dp[a][b] = INT_MAX;
	if (s[a] == t[b]){
		dp[a][b] = dfs(a + 1, b + 1);
	}
	
	dp[a][b] = min(dp[a][b],dfs(a + 1, b + 1) + 1);
	dp[a][b] = min(dp[a][b], dfs(a + 1, b) + 1);
	dp[a][b] = min(dp[a][b], dfs(a, b + 1) + 1);
	return dp[a][b];
}
int main(){
	cin >> n;
	cin >> m;
	cin >> s;
	cin >> t;
	int ans = dfs(0, 0);
	cout << ans << endl;
	return 0;
}
0