結果

問題 No.225 文字列変更(medium)
ユーザー ebi_flyebi_fly
提出日時 2020-03-15 23:06:58
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 10 ms / 5,000 ms
コード長 2,134 bytes
コンパイル時間 1,116 ms
コンパイル使用メモリ 100,832 KB
実行使用メモリ 6,912 KB
最終ジャッジ日時 2024-05-04 17:19:36
合計ジャッジ時間 1,646 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
5,248 KB
testcase_01 AC 6 ms
5,760 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 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 10 ms
6,656 KB
testcase_13 AC 8 ms
6,912 KB
testcase_14 AC 9 ms
6,912 KB
testcase_15 AC 9 ms
6,784 KB
testcase_16 AC 9 ms
6,784 KB
testcase_17 AC 9 ms
6,912 KB
testcase_18 AC 9 ms
6,656 KB
testcase_19 AC 9 ms
6,656 KB
testcase_20 AC 9 ms
6,400 KB
testcase_21 AC 9 ms
6,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <utility>
#include <string>
#include <vector>
#include <set>
#include <stack>
#include <queue>
#include <map>
#include <math.h>
#include <string.h>
#include <iomanip>
#include <numeric>
#include <cstdlib>
#include <cstdint>
#include <cmath>
#include <functional>
#include <limits>

using namespace std;

using ll = long long;
using pll = pair<ll, ll>;
using vl = vector<ll>;
using vll = vector<vl>;
using vpll = vector<pll>;

#define rep(i, n) for (int i = 0; i < (int)(n); i++)
#define rrep(i, n) for (int i = ((int)(n)-1); i >= 0; i--)
#define Rep(i, n) for (long long i = 0; i< (long long)(n); i++)
#define RRep(i,n) for (long long i = ((long long)(n)-1); i>=0; i--)
#define all(v) (v).begin(),(v).end()

struct Edge{
    int to;
    int weight;
    Edge(int t, int w) : to(t), weight(w){ }
};

struct edge{
    int from;
    int to;
    int weight;
    edge(int f,int t,int w) : from(f), to(t), weight(w){ }
};

using Graph = vector<vector<Edge>>;
using graph = vector<vector<int>>;
using edges = vector<edge>;

template <class T>
inline bool chmin(T &a, T b){
    if (a > b){
        a = b;
        return true;
    }
    return false;
}

template <class T>
inline bool chmax(T &a, T b){
    if (a < b){
        a = b;
        return true;
    }
    return false;
}

template <class T>
T gcd(T a, T b){
    if( b==0 ) return a;
    return gcd(b, a%b);
}

template <class T>
T lcm(T a, T b){
    return (a*b)/gcd(a,b);
}

int INF = 1e9+7;

vector<int> dx = {-1,0,1,0};
vector<int> dy = {0,-1,0,1};

int main(){
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    int n,m;
    cin >> n >> m;
    string s,t;
    cin >> s >> t;
    vector<vector<int>> dp(n+1,vector<int>(m+1,INF));
    dp[0][0] = 0;
    for(int i = -1; i<n; i++) for(int j = -1; j<m; j++){
        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;
}
0