結果

問題 No.225 文字列変更(medium)
ユーザー btk
提出日時 2015-06-12 22:31:56
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 1,016 bytes
コンパイル時間 648 ms
コンパイル使用メモリ 87,620 KB
実行使用メモリ 7,552 KB
最終ジャッジ日時 2024-07-06 15:54:23
合計ジャッジ時間 1,466 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 6 WA * 16
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<fstream>
#include<sstream>
#include<string>
#include<cstdio>
#include<cstdlib>
#include<cstring>
#include<ctime>
#include<stack>
#include<queue>
#include<set>
#include<map>
#include<vector>
#include<list>
#include<algorithm>
#include<utility>
#include<complex>
#include<functional>
using namespace std;


#define input_init stringstream ss; string strtoken, token; istringstream is
#define input_line  getline(cin, strtoken);is.str(strtoken);is.clear(istringstream::goodbit)
#define input_token(num) ss.str(""); ss.clear(stringstream::goodbit); getline(is, token, ','); ss << token; ss >> num

int dp[1001][1001];
int main(void){
	int n,m;
	string s;
	string t;
	cin >> n>>m >> s >> t;
	if (n < m){
		swap(n, m);
		swap(s, t);
	}
	for (int i = 0; i < n; i++){
		for (int j = 0; j < m; j++){
			if (s[i] == t[j]){
				dp[i + 1][j + 1] = dp[i][j] + 1;
			}
			else{
				dp[i + 1][j + 1] = max(dp[i][j + 1], dp[i + 1][j]);
			}
		}
	}
	cout << (n - m) + (m - dp[n][m]) << endl;
	return(0);
}
0