結果

問題 No.1818 6 Operations
ユーザー kwm_tkwm_t
提出日時 2022-01-21 23:46:16
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 94 ms / 2,500 ms
コード長 1,539 bytes
コンパイル時間 1,801 ms
コンパイル使用メモリ 207,144 KB
実行使用メモリ 60,032 KB
最終ジャッジ日時 2024-05-04 16:58:19
合計ジャッジ時間 4,297 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 25 ms
20,224 KB
testcase_09 AC 63 ms
35,840 KB
testcase_10 AC 23 ms
20,352 KB
testcase_11 AC 22 ms
19,072 KB
testcase_12 AC 49 ms
29,056 KB
testcase_13 AC 29 ms
24,192 KB
testcase_14 AC 41 ms
27,520 KB
testcase_15 AC 48 ms
31,488 KB
testcase_16 AC 30 ms
26,496 KB
testcase_17 AC 51 ms
38,144 KB
testcase_18 AC 89 ms
52,096 KB
testcase_19 AC 62 ms
50,048 KB
testcase_20 AC 79 ms
52,864 KB
testcase_21 AC 94 ms
53,760 KB
testcase_22 AC 56 ms
46,592 KB
testcase_23 AC 90 ms
56,832 KB
testcase_24 AC 81 ms
48,000 KB
testcase_25 AC 74 ms
60,032 KB
testcase_26 AC 78 ms
49,024 KB
testcase_27 AC 87 ms
51,200 KB
testcase_28 AC 22 ms
20,224 KB
testcase_29 AC 21 ms
19,200 KB
testcase_30 AC 94 ms
52,096 KB
testcase_31 AC 69 ms
55,296 KB
testcase_32 AC 92 ms
57,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
//#include <atcoder/all>
using namespace std;
//using namespace atcoder;
//using mint = modint1000000007;
//const int mod = 1000000007;
//using mint = modint998244353;
//const int mod = 998244353;
const int INF = 1e9;
//const long long LINF = 1e18;
#define rep(i, n) for (int i = 0; i < (n); ++i)
#define rep2(i,l,r)for(int i=(l);i<(r);++i)
#define rrep(i, n) for (int i = (n-1); i >= 0; --i)
#define rrep2(i,l,r)for(int i=(r-1);i>=(l);--i)
#define all(x) (x).begin(),(x).end()
#define allR(x) (x).rbegin(),(x).rend()
#define endl "\n"
#define P pair<int,int>
template<typename A, typename B> inline bool chmax(A & a, const B & b) { if (a < b) { a = b; return true; } return false; }
template<typename A, typename B> inline bool chmin(A & a, const B & b) { if (a > b) { a = b; return true; } return false; }

int main() {
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	int n, m; cin >> n >> m;
	vector<int>a, b;
	rep(i, n) {
		a.push_back(0);
		int x; cin >> x;
		rep(j, x)a.push_back(1);
	}
	rep(i, m) {
		b.push_back(0);
		int x; cin >> x;
		rep(j, x)b.push_back(1);
	}
	vector<vector<int>> dp(a.size() + 1, vector<int>(b.size() + 1, INF));
	rep(i, a.size() + 1)dp[i][0] = i;
	rep(i, b.size() + 1)dp[0][i] = i;
	rep2(i, 1, a.size() + 1)rep2(j, 1, b.size() + 1) {
		if (a[i - 1] == b[j - 1])chmin(dp[i][j], dp[i - 1][j - 1]);
		else chmin(dp[i][j], dp[i - 1][j - 1] + 1);
		chmin(dp[i][j], dp[i - 1][j - 0] + 1);
		chmin(dp[i][j], dp[i - 0][j - 1] + 1);
	}
	cout << dp[a.size()][b.size()] << endl;
	return 0;
}
0