結果

問題 No.1818 6 Operations
ユーザー nok0nok0
提出日時 2021-11-08 10:41:39
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 85 ms / 2,500 ms
コード長 692 bytes
コンパイル時間 2,259 ms
コンパイル使用メモリ 206,320 KB
実行使用メモリ 60,032 KB
最終ジャッジ日時 2024-11-17 21:02:26
合計ジャッジ時間 4,520 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 1 ms
6,820 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 1 ms
6,820 KB
testcase_07 AC 2 ms
6,820 KB
testcase_08 AC 26 ms
20,096 KB
testcase_09 AC 49 ms
35,712 KB
testcase_10 AC 26 ms
20,352 KB
testcase_11 AC 24 ms
18,944 KB
testcase_12 AC 38 ms
28,928 KB
testcase_13 AC 30 ms
24,320 KB
testcase_14 AC 35 ms
27,520 KB
testcase_15 AC 43 ms
31,488 KB
testcase_16 AC 35 ms
26,624 KB
testcase_17 AC 49 ms
38,016 KB
testcase_18 AC 71 ms
52,224 KB
testcase_19 AC 67 ms
50,176 KB
testcase_20 AC 71 ms
52,864 KB
testcase_21 AC 76 ms
53,760 KB
testcase_22 AC 66 ms
46,592 KB
testcase_23 AC 78 ms
56,832 KB
testcase_24 AC 65 ms
48,000 KB
testcase_25 AC 85 ms
60,032 KB
testcase_26 AC 68 ms
48,896 KB
testcase_27 AC 68 ms
51,200 KB
testcase_28 AC 25 ms
20,224 KB
testcase_29 AC 23 ms
19,072 KB
testcase_30 AC 71 ms
51,968 KB
testcase_31 AC 74 ms
55,168 KB
testcase_32 AC 79 ms
57,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
	int n, m;
	cin >> n >> m;
	string as = "", bs = "";
	for(int i = 0; i < n; i++) {
		as.push_back('0');
		int a;
		cin >> a;
		while(a--) as.push_back('1');
	}
	for(int i = 0; i < m; i++) {
		bs.push_back('0');
		int b;
		cin >> b;
		while(b--) bs.push_back('1');
	}

	n = as.size(), m = bs.size();
	vector dp(n + 1, vector(m + 1, 0));
	for(int i = 0; i <= n; i++) dp[i][0] = i;
	for(int j = 0; j <= m; j++) dp[0][j] = j;

	for(int i = 1; i <= n; i++) {
		for(int j = 1; j <= m; j++) {
			dp[i][j] = min({dp[i - 1][j] + 1, dp[i][j - 1] + 1, dp[i - 1][j - 1] + (as[i - 1] != bs[j - 1])});
		}
	}

	cout << dp.back().back() << '\n';
}
0