結果

問題 No.1818 6 Operations
ユーザー 00 Sakuda00 Sakuda
提出日時 2024-03-31 18:58:32
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 104 ms / 2,500 ms
コード長 785 bytes
コンパイル時間 2,016 ms
コンパイル使用メモリ 206,844 KB
実行使用メモリ 116,352 KB
最終ジャッジ日時 2024-09-30 21:17:15
合計ジャッジ時間 4,858 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 1 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 32 ms
37,120 KB
testcase_09 AC 61 ms
68,224 KB
testcase_10 AC 32 ms
37,376 KB
testcase_11 AC 30 ms
34,688 KB
testcase_12 AC 53 ms
54,656 KB
testcase_13 AC 41 ms
45,312 KB
testcase_14 AC 45 ms
51,712 KB
testcase_15 AC 51 ms
59,520 KB
testcase_16 AC 43 ms
49,920 KB
testcase_17 AC 64 ms
72,832 KB
testcase_18 AC 90 ms
101,120 KB
testcase_19 AC 87 ms
97,024 KB
testcase_20 AC 91 ms
102,528 KB
testcase_21 AC 94 ms
104,192 KB
testcase_22 AC 82 ms
89,856 KB
testcase_23 AC 100 ms
110,336 KB
testcase_24 AC 84 ms
92,672 KB
testcase_25 AC 104 ms
116,352 KB
testcase_26 AC 84 ms
94,592 KB
testcase_27 AC 89 ms
98,944 KB
testcase_28 AC 31 ms
37,248 KB
testcase_29 AC 29 ms
34,816 KB
testcase_30 AC 92 ms
100,608 KB
testcase_31 AC 99 ms
107,008 KB
testcase_32 AC 102 ms
111,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;using ll = long long;
ll INF = (1LL << 60);
int main() {
	int n, m;cin >> n >> m;
	vector<int> A, B;
	for (int i = 0;i < n;i++) {
		int a;cin >> a;
		A.push_back(0);
		for (int j = 0;j < a;j++) A.push_back(1);
	}
	for (int i = 0;i < m;i++) {
		int b;cin >> b;
		B.push_back(0);
		for (int j = 0;j < b;j++) B.push_back(1);
	}
	int N = A.size();int M = B.size();
	vector<vector<ll>> dp(N + 1, vector<ll>(M + 1, INF));
	dp[0][0] = 0;
	for (int i = 1;i <= N;i++) dp[i][0] = i;
	for (int i = 1;i  <= M;i++) dp[0][i] = i;
	for (int i = 1;i <= N;i++) for(int j = 1;j <= M;j++) {
		dp[i][j] = min(dp[i][j], dp[i - 1][j - 1] + (A[i - 1] != B[j - 1]));
		dp[i][j] = min(dp[i][j], min(dp[i - 1][j], dp[i][j - 1]) + 1);
	}
	cout << dp[N][M] << endl;
}
0