結果

問題 No.225 文字列変更(medium)
ユーザー ミドリムシミドリムシ
提出日時 2018-06-12 16:56:51
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 18 ms / 5,000 ms
コード長 751 bytes
コンパイル時間 590 ms
コンパイル使用メモリ 69,488 KB
実行使用メモリ 7,716 KB
最終ジャッジ日時 2024-06-30 13:54:28
合計ジャッジ時間 1,724 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
7,496 KB
testcase_01 AC 14 ms
7,532 KB
testcase_02 AC 4 ms
7,536 KB
testcase_03 AC 4 ms
7,428 KB
testcase_04 AC 4 ms
7,296 KB
testcase_05 AC 4 ms
7,404 KB
testcase_06 AC 4 ms
7,444 KB
testcase_07 AC 3 ms
7,424 KB
testcase_08 AC 4 ms
7,444 KB
testcase_09 AC 4 ms
7,448 KB
testcase_10 AC 4 ms
7,304 KB
testcase_11 AC 4 ms
7,484 KB
testcase_12 AC 17 ms
7,572 KB
testcase_13 AC 17 ms
7,608 KB
testcase_14 AC 17 ms
7,592 KB
testcase_15 AC 11 ms
7,592 KB
testcase_16 AC 18 ms
7,592 KB
testcase_17 AC 11 ms
7,504 KB
testcase_18 AC 15 ms
7,556 KB
testcase_19 AC 18 ms
7,716 KB
testcase_20 AC 15 ms
7,688 KB
testcase_21 AC 18 ms
7,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <vector>
#include <string.h>
using namespace std;

int n, m;
string S, T;

int dp[1010][1010];

int choose(int s_now, int t_now){
    if(dp[s_now][t_now] != -1){
        return dp[s_now][t_now];
    }else if(s_now == n){
        return dp[s_now][t_now] = m - t_now;
    }else if(t_now == m){
        return dp[s_now][t_now] = n - s_now;
    }else if(S[s_now] == T[t_now]){
        return dp[s_now][t_now] = choose(s_now + 1, t_now + 1);
    }else{
        return dp[s_now][t_now] = min({choose(s_now, t_now + 1) + 1, choose(s_now + 1, t_now) + 1, choose(s_now + 1, t_now + 1) + 1});
    }
}

int main(){
    cin >> n >> m >> S >> T;
    memset(dp, -1, sizeof(dp));
    cout << choose(0, 0) << endl;
}
0