結果

問題 No.1245 ANDORゲーム(calc)
ユーザー Example0911Example0911
提出日時 2020-10-03 16:20:40
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 277 ms / 2,000 ms
コード長 961 bytes
コンパイル時間 1,635 ms
コンパイル使用メモリ 172,572 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-18 04:33:22
合計ジャッジ時間 8,187 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 8 ms
6,944 KB
testcase_08 AC 4 ms
6,940 KB
testcase_09 AC 8 ms
6,940 KB
testcase_10 AC 9 ms
6,944 KB
testcase_11 AC 276 ms
6,944 KB
testcase_12 AC 277 ms
6,944 KB
testcase_13 AC 276 ms
5,376 KB
testcase_14 AC 269 ms
5,376 KB
testcase_15 AC 272 ms
5,376 KB
testcase_16 AC 273 ms
5,376 KB
testcase_17 AC 255 ms
5,376 KB
testcase_18 AC 249 ms
5,376 KB
testcase_19 AC 251 ms
5,376 KB
testcase_20 AC 260 ms
5,376 KB
testcase_21 AC 254 ms
5,376 KB
testcase_22 AC 252 ms
5,376 KB
testcase_23 AC 267 ms
5,376 KB
testcase_24 AC 264 ms
5,376 KB
testcase_25 AC 202 ms
5,376 KB
testcase_26 AC 205 ms
5,376 KB
testcase_27 AC 230 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"

//#include <atcoder/all>

using namespace std;
//using namespace atcoder;

//#define int long long
#define ll long long

ll INF = (1LL << 60);
int mod = 100000;
using P = pair<int, int>;


signed main() {
	int N, Q; cin >> N >> Q;
	vector<int>A(N); for (int i = 0; i < N; i++)cin >> A[i];
	string S; cin >> S;
	vector<vector<ll>>ans(30, vector<ll>(2));
	for (int i = 0; i < 30; i++) {
		for (int j = 0; j < 2; j++) {
			bool now = j;
			for (int k = 0; k < N; k++) {
				bool now2 = (A[k] & (1 << i));
				if (S[k] == '0') {
					bool nv = (now & now2);
					if (nv != now) {
						ans[i][j]++;
					}
					now = nv;
				}
				else {
					bool nv = (now | now2);
					if (nv != now)ans[i][j]++;
					now = nv;
				}
			}
		}
	}
	for (int _ = 0; _ < Q; _++) {
		ll t; cin >> t;
		ll res = 0;
		for (int i = 0; i < 30; i++) {
			bool now = (t & (1LL << i));
			res += ans[i][now] * (1LL << i);
		}
		cout << res << endl;
	}
	return 0;
}
0