結果
問題 | No.225 文字列変更(medium) |
ユーザー |
![]() |
提出日時 | 2020-03-20 07:37:18 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,426 bytes |
コンパイル時間 | 862 ms |
コンパイル使用メモリ | 99,872 KB |
実行使用メモリ | 7,296 KB |
最終ジャッジ日時 | 2024-12-14 03:59:14 |
合計ジャッジ時間 | 1,656 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 17 WA * 5 |
ソースコード
#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 + 1) rep(j, m + 1) 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]); }