結果

問題 No.1183 コイン遊び
ユーザー HaarHaar
提出日時 2020-08-22 13:06:00
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 144 ms / 2,000 ms
コード長 952 bytes
コンパイル時間 2,147 ms
コンパイル使用メモリ 206,552 KB
実行使用メモリ 28,136 KB
最終ジャッジ日時 2024-10-15 07:11:35
合計ジャッジ時間 6,900 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 2 ms
6,820 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 2 ms
6,820 KB
testcase_09 AC 2 ms
6,820 KB
testcase_10 AC 5 ms
6,816 KB
testcase_11 AC 11 ms
6,820 KB
testcase_12 AC 91 ms
17,048 KB
testcase_13 AC 84 ms
16,216 KB
testcase_14 AC 133 ms
19,212 KB
testcase_15 AC 143 ms
19,524 KB
testcase_16 AC 142 ms
19,712 KB
testcase_17 AC 142 ms
20,220 KB
testcase_18 AC 143 ms
19,700 KB
testcase_19 AC 144 ms
20,496 KB
testcase_20 AC 143 ms
20,140 KB
testcase_21 AC 118 ms
11,024 KB
testcase_22 AC 115 ms
10,988 KB
testcase_23 AC 117 ms
10,868 KB
testcase_24 AC 118 ms
10,864 KB
testcase_25 AC 143 ms
19,880 KB
testcase_26 AC 144 ms
20,656 KB
testcase_27 AC 143 ms
19,920 KB
testcase_28 AC 143 ms
21,360 KB
testcase_29 AC 120 ms
11,108 KB
testcase_30 AC 131 ms
28,136 KB
testcase_31 AC 144 ms
20,392 KB
testcase_32 AC 144 ms
20,324 KB
testcase_33 AC 144 ms
20,500 KB
testcase_34 AC 143 ms
20,708 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

/**
 * @title Run length encoding
 * @docs run_length_encoding.md
 */
template <typename Container, typename T = typename Container::value_type>
auto run_length_encoding(const Container &v){
  std::vector<std::pair<T,int64_t>> ret;

  for(auto &x : v){
    if(ret.empty()) ret.emplace_back(x, 1);
    else if(ret.back().first == x) ++ret.back().second;
    else ret.emplace_back(x, 1);
  }

  return ret;
}


namespace solver{
  void solve(){
    std::cin.tie(0);
    std::ios::sync_with_stdio(false);

    int N; std::cin >> N;
    std::vector<int> A(N), B(N);
    for(int i = 0; i < N; ++i) std::cin >> A[i];
    for(int i = 0; i < N; ++i) std::cin >> B[i];

    for(int i = 0; i < N; ++i){
      A[i] = A[i] ^ B[i];
    }

    auto r = run_length_encoding(A);

    int ans = 0;

    for(auto [x, i] : r){
      if(x == 1) ++ans;
    }

    
    std::cout << ans << "\n";
  }
}

int main(){
  solver::solve();
  return 0;
}
0