結果

問題 No.225 文字列変更(medium)
ユーザー sykwersykwer
提出日時 2019-02-21 06:37:34
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 7 ms / 5,000 ms
コード長 1,409 bytes
コンパイル時間 1,036 ms
コンパイル使用メモリ 111,852 KB
実行使用メモリ 10,932 KB
最終ジャッジ日時 2024-04-27 15:58:21
合計ジャッジ時間 1,721 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
6,816 KB
testcase_01 AC 5 ms
8,404 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 1 ms
6,944 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 1 ms
6,948 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 7 ms
10,360 KB
testcase_13 AC 6 ms
10,932 KB
testcase_14 AC 6 ms
10,752 KB
testcase_15 AC 4 ms
10,472 KB
testcase_16 AC 6 ms
10,532 KB
testcase_17 AC 5 ms
10,488 KB
testcase_18 AC 5 ms
10,164 KB
testcase_19 AC 5 ms
10,504 KB
testcase_20 AC 5 ms
10,124 KB
testcase_21 AC 5 ms
10,372 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/* ---------- STL Libraries ---------- */
// IO library
#include <cstdio>
#include <fstream>
#include <iomanip>
#include <ios>
#include <iostream>

// algorithm library
#include <algorithm>
#include <cmath>
#include <numeric>
#include <random>

// container library
#include <array>
#include <bitset>
#include <deque>
#include <map>
#include <unordered_map>
#include <queue>
#include <set>
#include <string>
#include <tuple>
#include <vector>

/* ---------- Namespace ---------- */
using namespace std;

/* ---------- Type ---------- */
using ll = long long;
#define int ll
#define P pair<ll, ll>

/* ---------- Constants  */
const double PI = 3.141592653589793238462643383279;
const ll MOD = 1e9 + 7;
const int INF = 1LL << 55;

/* v-v-v-v-v-v-v-v-v Main Part v-v-v-v-v-v-v-v-v */
signed main() {
    int N, M;
    string s, t;
    cin >> N >> M >> s >> t;

    int dp[N+1][M+1];
    fill(dp[0], dp[N+1], INF);
    dp[0][0] = 0;
    for (int i = 1; i <= N; i++) dp[i][0] = i;
    for (int j = 1; j <= M; j++) dp[0][j] = j;

    for (int i = 1; i <= N; i++) {
        for (int j = 1; j <= M; j++) {
            dp[i][j] = min(dp[i-1][j] + 1, dp[i][j-1] + 1);
            if (s[i-1] == t[j-1]) {
                dp[i][j] = min(dp[i][j], dp[i-1][j-1]);
            } else {
                dp[i][j] = min(dp[i][j], dp[i-1][j-1] + 1);
            }
        }
    }

    cout << dp[N][M] << endl;

    return 0;
}
0