結果
問題 | No.1245 ANDORゲーム(calc) |
ユーザー |
|
提出日時 | 2020-10-03 09:46:24 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 103 ms / 2,000 ms |
コード長 | 2,992 bytes |
コンパイル時間 | 1,650 ms |
コンパイル使用メモリ | 196,108 KB |
最終ジャッジ日時 | 2025-01-15 01:55:10 |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 25 |
ソースコード
#pragma region template#include <bits/stdc++.h>using namespace std;using ll = long long;using ull = unsigned long long;using ld = long double;using vi = vector<int>;using vvi = vector<vi>;using vvvi = vector<vvi>;using vll = vector<ll>;using vvll = vector<vll>;using vvvll = vector<vvll>;using vld = vector<ld>;using vvld = vector<vld>;using vvvld = vector<vvld>;using vs = vector<string>;using pll = pair<ll, ll>;using vp = vector<pll>;template <typename T>using pqrev = priority_queue<T, vector<T>, greater<T>>;#define rep(i, n) for (ll i = 0, i##_end = (n); i < i##_end; i++)#define repb(i, n) for (ll i = (n)-1; i >= 0; i--)#define repr(i, a, b) for (ll i = (a), i##_end = (b); i < i##_end; i++)#define reprb(i, a, b) for (ll i = (b)-1, i##_end = (a); i >= i##_end; i--)#define ALL(a) (a).begin(), (a).end()#define SZ(x) ((ll)(x).size())//*constexpr ll MOD = 1000000007;/*/constexpr ll MOD = 998244353;//*/constexpr ll INF = 1e+18;constexpr ld EPS = 1e-12L;constexpr ld PI = 3.14159265358979323846L;constexpr ll GCD(ll a, ll b) { return b ? GCD(b, a % b) : a; }constexpr ll LCM(ll a, ll b) { return a / GCD(a, b) * b; }template <typename S, typename T>inline bool chmax(S &a, const T &b) {if (a < b) {a = b;return 1;}return 0;}template <typename S, typename T>inline bool chmin(S &a, const T &b) {if (b < a) {a = b;return 1;}return 0;}#ifdef OJ_LOCAL#include "dump.hpp"#else#define dump(...) ((void)0)#endiftemplate <typename T>bool print_(const T &a) {cout << a;return true;}template <typename T>bool print_(const vector<T> &vec) {for (auto &a : vec) {cout << a;if (&a != &vec.back()) {cout << " ";}}return false;}template <typename T>bool print_(const vector<vector<T>> &vv) {for (auto &v : vv) {for (auto &a : v) {cout << a;if (&a != &v.back()) {cout << " ";}}if (&v != &vv.back()) {cout << "\n";}}return false;}void print() { cout << "\n"; }template <typename Head, typename... Tail>void print(Head &&head, Tail &&... tail) {bool f = print_(head);if (sizeof...(tail) != 0) {cout << (f ? " " : "\n");}print(forward<Tail>(tail)...);}#pragma endregionll ba[2][34];int main() {cin.tie(0);ios::sync_with_stdio(false);cout << fixed << setprecision(20);// & decrease | increase// separate each bitint n, q;cin >> n >> q;vll a(n);rep(i, n){cin >> a[i];}string s;cin >> s;rep(i, 2){rep(j, 34){ll t = i;ll diff = 0;rep(k, n){if(s[k] == '0' && !((a[k] >> j) & 1)){diff += t;t = 0;}if(s[k] == '1' && ((a[k] >> j) & 1)){diff += 1-t;t = 1;}}ba[i][j] = diff << j;}}while(q--){ll t;cin >> t;ll ans = 0;rep(i, 34){ans += ba[(t >> i) & 1][i];}print(ans);}}