結果
問題 | No.225 文字列変更(medium) |
ユーザー | btk |
提出日時 | 2015-06-12 23:55:15 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,047 bytes |
コンパイル時間 | 594 ms |
コンパイル使用メモリ | 90,684 KB |
実行使用メモリ | 7,168 KB |
最終ジャッジ日時 | 2024-07-06 15:57:13 |
合計ジャッジ時間 | 1,280 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 4 ms
5,888 KB |
testcase_02 | WA | - |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 1 ms
5,376 KB |
testcase_10 | AC | 1 ms
5,376 KB |
testcase_11 | WA | - |
testcase_12 | AC | 6 ms
6,912 KB |
testcase_13 | AC | 5 ms
7,168 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 6 ms
7,040 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 5 ms
7,040 KB |
testcase_20 | WA | - |
testcase_21 | AC | 5 ms
6,912 KB |
ソースコード
#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 main(void){ int n,m; string s; string t; cin >> n>>m >> s >> t; vector<vector<int>> dp(n + 1, vector<int>(m + 1, 10000)); dp[0][0] = 0; for (int i = 0; i < n; i++){ for (int j = 0; j < m; j++){ dp[i + 1][j + 1] = min(dp[i][j] + (s[i]!=t[j]),dp[i+1][j+1]); dp[i + 1][j] = min(dp[i][j] + 1, dp[i + 1][j]); dp[i][j+1] = min(dp[i][j] + 1, dp[i][j + 1]); } } cout << dp[n][m] << endl; return(0); }