結果

問題 No.1818 6 Operations
ユーザー bokusunnybokusunny
提出日時 2022-02-22 21:42:07
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 104 ms / 2,500 ms
コード長 1,086 bytes
コンパイル時間 2,540 ms
コンパイル使用メモリ 208,692 KB
実行使用メモリ 59,904 KB
最終ジャッジ日時 2024-06-30 21:36:18
合計ジャッジ時間 5,125 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 33 ms
20,096 KB
testcase_09 AC 61 ms
35,712 KB
testcase_10 AC 33 ms
20,352 KB
testcase_11 AC 31 ms
18,944 KB
testcase_12 AC 49 ms
28,928 KB
testcase_13 AC 40 ms
24,192 KB
testcase_14 AC 46 ms
27,520 KB
testcase_15 AC 54 ms
31,488 KB
testcase_16 AC 45 ms
26,496 KB
testcase_17 AC 66 ms
38,016 KB
testcase_18 AC 90 ms
52,096 KB
testcase_19 AC 88 ms
50,048 KB
testcase_20 AC 92 ms
52,736 KB
testcase_21 AC 94 ms
53,760 KB
testcase_22 AC 80 ms
46,592 KB
testcase_23 AC 99 ms
56,832 KB
testcase_24 AC 83 ms
47,872 KB
testcase_25 AC 104 ms
59,904 KB
testcase_26 AC 85 ms
49,024 KB
testcase_27 AC 89 ms
51,072 KB
testcase_28 AC 33 ms
20,352 KB
testcase_29 AC 31 ms
19,200 KB
testcase_30 AC 91 ms
51,968 KB
testcase_31 AC 97 ms
55,296 KB
testcase_32 AC 101 ms
57,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define bokusunny ios::sync_with_stdio(false), cin.tie(nullptr);

void solve() {
  int N, M;
  cin >> N >> M;
  vector<int> A(N);
  for (int i = 0; i < N; i++) cin >> A[i];
  vector<int> B(M);
  for (int i = 0; i < M; i++) cin >> B[i];

  vector<int> AA;
  for (auto &a : A) {
    AA.push_back(0);
    for (int i = 0; i < a; i++) AA.push_back(1);
  }
  vector<int> BB;
  for (auto &b : B) {
    BB.push_back(0);
    for (int i = 0; i < b; i++) BB.push_back(1);
  }

  const int INFINT = 1 << 30;
  int sz_a = (int)AA.size();
  int sz_b = (int)BB.size();
  vector dp(sz_a + 1, vector<int>(sz_b + 1, INFINT));
  dp[0][0] = 0;
  for (int i = 0; i <= sz_a; i++) {
    for (int j = 0; j <= sz_b; j++) {
      if (i > 0) dp[i][j] = min(dp[i][j], dp[i - 1][j] + 1);
      if (j > 0) dp[i][j] = min(dp[i][j], dp[i][j - 1] + 1);
      if (i > 0 && j > 0) {
        dp[i][j] = min(dp[i][j], dp[i - 1][j - 1] + (int)(AA[i - 1] != BB[j - 1]));
      }
    }
  }

  cout << dp[sz_a][sz_b] << endl;
}

int main() {
  bokusunny;
  solve();

  return 0;
}
0