結果
問題 | No.225 文字列変更(medium) |
ユーザー | kamocyc |
提出日時 | 2020-03-20 07:34:56 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,418 bytes |
コンパイル時間 | 985 ms |
コンパイル使用メモリ | 100,368 KB |
実行使用メモリ | 7,384 KB |
最終ジャッジ日時 | 2024-05-08 03:49:27 |
合計ジャッジ時間 | 1,848 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | WA | - |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 5 ms
7,040 KB |
testcase_13 | WA | - |
testcase_14 | AC | 4 ms
7,252 KB |
testcase_15 | AC | 5 ms
7,168 KB |
testcase_16 | AC | 6 ms
7,292 KB |
testcase_17 | AC | 5 ms
7,020 KB |
testcase_18 | AC | 5 ms
6,944 KB |
testcase_19 | AC | 5 ms
7,168 KB |
testcase_20 | WA | - |
testcase_21 | AC | 5 ms
7,040 KB |
ソースコード
#include <iostream> #include <cstdio> #include <algorithm> #include <cmath> #include <vector> #include <list> #include <set> #include <map> #include <queue> #include <stack> #include <cctype> #include <cassert> #include <climits> #include <string> #include <bitset> #include <cfloat> #include <unordered_set> #include <iomanip> //#pragma GCC optimize("Ofast") //デバッグ時にoptimized-outされて邪魔だった using namespace std; typedef long double ld; typedef long long int ll; typedef unsigned long long int ull; typedef vector<int> vi; typedef vector<char> vc; typedef vector<bool> vb; typedef vector<double> vd; typedef vector<string> vs; typedef vector<ll> vll; typedef vector<pair<int,int> > vpii; typedef vector<vector<int> > vvi; typedef vector<vector<char> > vvc; typedef vector<vector<string> > vvs; typedef vector<vector<ll> > vvll; #define rep(i,n) for(int i = 0; i < (n); ++i) #define rrep(i,n) for(int i = 1; i <= (n); ++i) #define irep(it, stl) for(auto it = stl.begin(); it != stl.end(); it++) #define drep(i,n) for(int i = (n) - 1; i >= 0; --i) #define fin(ans) cout << (ans) << '\n' #define mp(p,q) make_pair(p, q) #define pb(n) push_back(n) #define all(a) a.begin(), a.end() #define rall(a) a.rbegin(), a.rend() #define floatprec(dig) fixed << setprecision(dig) #define Sort(a) sort(a.begin(), a.end()) #define Rort(a) sort(a.rbegin(), a.rend()) #define MATHPI acos(-1) #define itn int; #define invar(typ, var) typ var; cin >> var; int dx[8] = {1, 0, -1, 0, 1, -1, -1, 1}; int dy[8] = {0, 1, 0, -1, 1, 1, -1, -1}; 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;} struct io{io(){ios::sync_with_stdio(false);cin.tie(0);}}; const int INF = INT_MAX; const ll LLINF = 1LL<<60; const ll MOD = 1000000007; const double EPS = 1e-9; int dp[1002][1002]; signed main(void) { cin.tie(0); ios::sync_with_stdio(false); invar(int, n); invar(int, m); invar(string, S); invar(string, T); rep(i, n) rep(j, m) dp[i][j] = INF / 2; dp[0][0] = 0; for(int i=0; i<=n; ++i) { for(int j=0; j<=m; ++j) { // dp[i+1][j+1] = min( S[i] == T[j] ? dp[i][j] : dp[i][j] + 1, //変更 min( dp[i][j+1] + 1, //追加 dp[i+1][j] + 1 //jは次に進むが,iは変わらない => 削除 ) ); } } fin(dp[n][m]); }