結果
問題 | No.225 文字列変更(medium) |
ユーザー | uw_yu1rabbit |
提出日時 | 2020-12-30 21:26:05 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 11 ms / 5,000 ms |
コード長 | 1,121 bytes |
コンパイル時間 | 791 ms |
コンパイル使用メモリ | 81,252 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-10-08 02:57:29 |
合計ジャッジ時間 | 1,666 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 5 ms
6,816 KB |
testcase_01 | AC | 8 ms
8,064 KB |
testcase_02 | AC | 1 ms
6,816 KB |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | AC | 2 ms
6,820 KB |
testcase_05 | AC | 2 ms
6,816 KB |
testcase_06 | AC | 2 ms
6,820 KB |
testcase_07 | AC | 2 ms
6,820 KB |
testcase_08 | AC | 2 ms
6,816 KB |
testcase_09 | AC | 1 ms
6,816 KB |
testcase_10 | AC | 2 ms
6,816 KB |
testcase_11 | AC | 1 ms
6,816 KB |
testcase_12 | AC | 11 ms
10,112 KB |
testcase_13 | AC | 11 ms
10,752 KB |
testcase_14 | AC | 11 ms
10,368 KB |
testcase_15 | AC | 10 ms
10,112 KB |
testcase_16 | AC | 10 ms
10,368 KB |
testcase_17 | AC | 10 ms
10,240 KB |
testcase_18 | AC | 10 ms
10,112 KB |
testcase_19 | AC | 11 ms
10,240 KB |
testcase_20 | AC | 9 ms
9,728 KB |
testcase_21 | AC | 9 ms
10,240 KB |
ソースコード
#include<iostream> #include<algorithm> #include<cstdint> #include<cstddef> #include<vector> //#include<atcoder/all> //using namespace atcoder; using namespace std; using i32 = int_fast32_t; using i64 = int_fast64_t; using usize = size_t; using u32 = uint_fast32_t; using u64 = uint_fast64_t; template<typename T> using vec = vector<T>; #define rep(i, n) for (i64 i = 0; i < (i64)(n); ++i) #define all(a) (a).begin(),(a).end() #define rall(a) (a).rbegin(),(a).rend() using P = pair<i64,i64>; void solve(){ } int main(){ ios::sync_with_stdio(false); std::cin.tie(nullptr); u64 n,m; cin >> n >> m; string s,t; cin >> s >> t; vec<vec<i64>> dp(n + 1,vec<i64>(m + 1,1e18)); dp[0][0] = 0; rep(i,n + 1){ rep(j, m + 1){ if(i && j){ if(s[i - 1] == t[j - 1])dp[i][j] = min(dp[i - 1][j - 1],dp[i][j]); else dp[i][j] = min(dp[i - 1][j - 1] + 1 ,dp[i][j]); } if(i)dp[i][j] = min(dp[i - 1][j] + 1 ,dp[i][j]); if(j)dp[i][j] = min(dp[i][j - 1] + 1,dp[i][j]); } } cout << dp.back().back() << endl; }