結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 27 ms
20,224 KB
testcase_09 AC 52 ms
35,840 KB
testcase_10 AC 27 ms
20,480 KB
testcase_11 AC 25 ms
19,072 KB
testcase_12 AC 40 ms
28,928 KB
testcase_13 AC 34 ms
24,448 KB
testcase_14 AC 38 ms
27,520 KB
testcase_15 AC 44 ms
31,488 KB
testcase_16 AC 37 ms
26,752 KB
testcase_17 AC 54 ms
38,144 KB
testcase_18 AC 74 ms
52,352 KB
testcase_19 AC 74 ms
50,304 KB
testcase_20 AC 77 ms
52,864 KB
testcase_21 AC 79 ms
53,888 KB
testcase_22 AC 67 ms
46,592 KB
testcase_23 AC 83 ms
56,960 KB
testcase_24 AC 69 ms
48,128 KB
testcase_25 AC 87 ms
60,032 KB
testcase_26 AC 70 ms
49,024 KB
testcase_27 AC 74 ms
51,200 KB
testcase_28 AC 28 ms
20,352 KB
testcase_29 AC 26 ms
19,072 KB
testcase_30 AC 74 ms
51,968 KB
testcase_31 AC 80 ms
55,296 KB
testcase_32 AC 84 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