結果
問題 | No.225 文字列変更(medium) |
ユーザー | nagatelu1020 |
提出日時 | 2019-10-30 11:36:38 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,809 bytes |
コンパイル時間 | 1,631 ms |
コンパイル使用メモリ | 160,120 KB |
実行使用メモリ | 11,392 KB |
最終ジャッジ日時 | 2024-09-14 21:46:19 |
合計ジャッジ時間 | 2,516 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 7 ms
11,264 KB |
testcase_03 | AC | 8 ms
11,264 KB |
testcase_04 | AC | 8 ms
11,136 KB |
testcase_05 | WA | - |
testcase_06 | AC | 8 ms
11,264 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 8 ms
11,264 KB |
testcase_12 | AC | 13 ms
11,136 KB |
testcase_13 | WA | - |
testcase_14 | AC | 13 ms
11,392 KB |
testcase_15 | AC | 12 ms
11,264 KB |
testcase_16 | AC | 13 ms
11,392 KB |
testcase_17 | AC | 12 ms
11,392 KB |
testcase_18 | AC | 13 ms
11,392 KB |
testcase_19 | AC | 13 ms
11,392 KB |
testcase_20 | WA | - |
testcase_21 | AC | 13 ms
11,392 KB |
ソースコード
#include <bits/stdc++.h> #define rep(i, n) for(ll i=0; i<n; i++) #define repr(i, s, e) for(ll i=s; i>=e; i--) #define reps(i, s, e) for(ll i=s; i<=e; i++) #define ll long long #define inf 1e18 #define all(v) v.begin(),v.end() #define vsort(v) sort(v.begin(), v.end()) #define vsortr(v) sort(v.begin(), v.end(), greater<ll>()) #define sz(x) x.size() #define ceil(a, b) (a+b-1)/b #define ok cout << "ok" << endl; #define sp << " " << using namespace std; template<typename T> inline bool chmax(T &a, T b){ if(a<b){ a=b; return true; } return false; } template<typename T> inline bool chmin(T &a, T b){ if(b<a){ a=b; return true; } return false; } template<typename T> T gcd(T a, T b){ if(b==0) return a; return gcd(b, a%b); } template<typename T> T lcm(T a, T b){ return a*(b/gcd(a, b)); } template<typename T> void vdebug(vector<T> v){ for(auto vv : v){ cout << vv << " "; } cout << endl; } template<typename T> void adebug(T arr[], ll n){ rep(i, n){ cout << arr[i] << " "; } cout << endl; } void ans(bool b){ if(b) cout << "Yes" << endl; else cout << "No" << endl; } void ans2(bool b){ if(b) cout << "YES" << endl; else cout << "NO" << endl; } ll keta(ll num){ ll k=0; while(num>0){ num/=10; k++; } return k; } int dx[] = {1, -1, 0, 0, 1, -1, 1, -1}; int dy[] = {0, 0, 1, -1, 1, -1, -1, 1}; int main(){ ios::sync_with_stdio(false); cin.tie(0); ll n, m; ll dp[1010][1010]; string s, t; cin >> n >> m >> s >> t; rep(i, n){ rep(j, m){ dp[i][j] = inf; } } dp[0][0] = 0; rep(i, n){ rep(j, m){ if(s[i] == t[j]) dp[i+1][j+1] = min(dp[i][j], min(dp[i+1][j] + 1, dp[i][j+1] + 1)); else dp[i+1][j+1] = min(dp[i][j], min(dp[i+1][j], dp[i][j+1])) + 1; } } cout << dp[n][m] << endl; return 0; }