結果
問題 | No.225 文字列変更(medium) |
ユーザー | hotpepsi |
提出日時 | 2016-01-11 22:49:29 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 680 bytes |
コンパイル時間 | 668 ms |
コンパイル使用メモリ | 62,488 KB |
実行使用メモリ | 7,424 KB |
最終ジャッジ日時 | 2024-09-19 18:48:18 |
合計ジャッジ時間 | 1,739 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 4 ms
7,424 KB |
testcase_03 | AC | 4 ms
7,296 KB |
testcase_04 | AC | 4 ms
7,296 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 4 ms
7,296 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 4 ms
7,296 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
ソースコード
#include <iostream> #include <algorithm> #include <sstream> #include <vector> #include <cstring> using namespace std; int main(int argc, char *argv[]) { int N, M; string S, T; cin >> N >> M >> S >> T; int dp[1001][1001] = {}, slen = S.length(), tlen = T.length(); for (int j = 1; j <= tlen; ++j) { dp[0][j] = j; } for (int i = 1; i <= slen; ++i) { for (int j = 1; j <= tlen; ++j) { int cost = min(dp[i - 1][j] + 1, dp[i - 1][j - 1] + 1); if (j > 1) { cost = min(cost, dp[i][j - 1] + 1); } if (S[i - 1] == T[j - 1]) { cost = min(cost, dp[i - 1][j - 1]); } dp[i][j] = cost; } } int ans = dp[slen][tlen]; cout << ans << endl; return 0; }