結果

問題 No.225 文字列変更(medium)
ユーザー nnenn0nnenn0
提出日時 2021-03-30 20:47:54
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 11 ms / 5,000 ms
コード長 1,265 bytes
コンパイル時間 3,869 ms
コンパイル使用メモリ 262,824 KB
実行使用メモリ 7,296 KB
最終ジャッジ日時 2024-05-08 00:04:25
合計ジャッジ時間 5,024 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
5,248 KB
testcase_01 AC 8 ms
6,016 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 11 ms
7,040 KB
testcase_13 AC 11 ms
7,296 KB
testcase_14 AC 11 ms
7,296 KB
testcase_15 AC 11 ms
7,168 KB
testcase_16 AC 11 ms
7,040 KB
testcase_17 AC 11 ms
7,040 KB
testcase_18 AC 11 ms
6,912 KB
testcase_19 AC 10 ms
7,040 KB
testcase_20 AC 11 ms
6,912 KB
testcase_21 AC 10 ms
7,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>

using namespace atcoder;
using namespace std;
#define rep(i,a,b) for(int i = a; i < b; i++)
#define rrep(i,a,b) for(int i = a; i >= b; i--)
#define fore(i,a) for(auto& i : a)
#define sz(x) (int)(x).size()
#define all(x) (x).begin(),(x).end()
#define rall(x) (x).rbegin(),(x).rend()
using ll = long long;
using pint = pair<int, int>;
using pll = pair<long long, long long>;
int dx[4] = {1, 0, -1, 0};
int dy[4] = {0, 1, 0, -1};
const int IINF = 1000100100;
const long long LINF = 1LL << 60;
template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; }
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; }

int main() {
    int n, m; cin >> n >> m;
    string S, T; cin >> S >> T;
    vector<vector<int>> dp(n+1, vector<int>(m+1, IINF));
    dp[0][0] = 0;
    rep(i, -1, n) rep(j, -1, m) {
        if (i == -1 && j == -1) continue;
        if (i >= 0 && j >= 0) {
            if (S[i] == T[j]) chmin(dp[i+1][j+1], dp[i][j]);
            else chmin(dp[i+1][j+1], dp[i][j]+1);
        }
        if (i >= 0) chmin(dp[i+1][j+1], dp[i][j+1]+1);
        if (j >= 0) chmin(dp[i+1][j+1], dp[i+1][j]+1);
    }
    cout << dp[n][m] << endl;
    return 0;
}
0