結果

問題 No.1245 ANDORゲーム(calc)
ユーザー simansiman
提出日時 2023-04-11 23:19:02
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
AC  
実行時間 235 ms / 2,000 ms
コード長 1,086 bytes
コンパイル時間 3,635 ms
コンパイル使用メモリ 141,816 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-07 18:41:21
合計ジャッジ時間 9,660 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 1 ms
6,816 KB
testcase_05 AC 1 ms
6,816 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 6 ms
6,820 KB
testcase_08 AC 4 ms
6,820 KB
testcase_09 AC 6 ms
6,820 KB
testcase_10 AC 8 ms
6,820 KB
testcase_11 AC 234 ms
6,816 KB
testcase_12 AC 235 ms
6,816 KB
testcase_13 AC 231 ms
6,816 KB
testcase_14 AC 228 ms
6,816 KB
testcase_15 AC 230 ms
6,820 KB
testcase_16 AC 227 ms
6,816 KB
testcase_17 AC 224 ms
6,816 KB
testcase_18 AC 221 ms
6,816 KB
testcase_19 AC 227 ms
6,816 KB
testcase_20 AC 227 ms
6,816 KB
testcase_21 AC 228 ms
6,820 KB
testcase_22 AC 228 ms
6,816 KB
testcase_23 AC 232 ms
6,816 KB
testcase_24 AC 227 ms
6,816 KB
testcase_25 AC 199 ms
6,820 KB
testcase_26 AC 208 ms
6,816 KB
testcase_27 AC 221 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cassert>
#include <cmath>
#include <algorithm>
#include <iostream>
#include <iomanip>
#include <climits>
#include <map>
#include <queue>
#include <set>
#include <cstring>
#include <vector>

using namespace std;
typedef long long ll;

int main() {
  int N, Q;
  cin >> N >> Q;
  ll A[N];
  for (int i = 0; i < N; ++i) {
    cin >> A[i];
  }
  string S;
  cin >> S;
  ll T[Q];
  for (int i = 0; i < Q; ++i) {
    cin >> T[i];
  }

  ll memo[35][2];
  memset(memo, 0, sizeof(memo));

  for (int i = 0; i < 35; ++i) {
    ll val = pow(2, i);

    for (int d = 0; d < 2; ++d) {
      ll cur = d;

      for (int idx = 0; idx < N; ++idx) {
        ll a = A[idx];
        ll b_cur = cur;
        
        if (S[idx] == '0') {
          cur &= (a >> i) & 1;
        } else {
          cur |= (a >> i) & 1;
        }

        memo[i][d] += (cur ^ b_cur) * val;
      }
    }
  }

  for (int i = 0; i < Q; ++i) {
    ll t = T[i];
    ll ans = 0;

    for (int i = 0; i < 35; ++i) {
      int d = (t >> i) & 1;
      ans += memo[i][d];
    }

    cout << ans << endl;
  }

  return 0;
}
0