結果

問題 No.225 文字列変更(medium)
ユーザー machymachy
提出日時 2015-06-12 22:52:43
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 7 ms / 5,000 ms
コード長 864 bytes
コンパイル時間 612 ms
コンパイル使用メモリ 79,572 KB
実行使用メモリ 7,168 KB
最終ジャッジ日時 2024-06-06 17:25:58
合計ジャッジ時間 1,389 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <vector>
#include <string>
#include <cmath>
#include <iomanip>
#include <map>
using namespace std;
typedef long long LL;


int main(){
    int sn, tn;
    string s, t;
    cin >> sn >> tn;
    cin >> s >> t;
    vector<vector<int> >  ed(sn+1, vector<int>(tn+1, sn*tn));
    for(int y = 0; y <= sn; y++){
        ed[y][0] = y;
    }
    for(int x = 0; x <= tn; x++){
        ed[0][x] = x;
    }
    for(int y = 1; y <= sn; y++){
        for(int x = 1; x <= tn; x++){
            if(s[y-1] == t[x-1]){
                ed[y][x] = min(ed[y][x], ed[y-1][x-1]);
            }else{
                ed[y][x] = min(ed[y][x], ed[y-1][x-1]+1);
            }
            ed[y][x] = min(ed[y][x], ed[y-1][x]+1);
            ed[y][x] = min(ed[y][x], ed[y][x-1]+1);
        }
    }
    cout << ed[sn][tn] << endl;
    return 0;
}
0