#include<bits/stdc++.h>
#include<fstream>
#pragma GCC optimize("Ofast,O3,unroll-loops")
#pragma GCC target("avx2")
using namespace std;
//ifstream fin("FEEDING.INP");
//ofstream fout("FEEDING.OUT");
#define sz(a) (int)a.size()
#define ll long long
#define pb push_back
#define forr(i, a, b) for(int i = a; i < b; i++)
#define dorr(i, a, b) for(int i = a; i >= b; i--)
#define ld long double
#define vt vector
#include<fstream>
#define fi first
#define se second
#define pll pair<ll, ll>
#define pii pair<int, int>
const ll mxn = 3e5 + 5, base = 972663749;
const ll mod = 911382323, mxv = 1e9 + 1, inf = 2e9;
int l, q;
int big[(1 << 20)], small[(1 << 20)];
string s;
signed main()
{
ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
cin >> l >> q;
cin >> s;
for(int i = 0; i < (1 << l); i++){
big[i] = (s[i] - '0'); small[i] = (s[i] - '0');
}
for(int i = 0; i < l; i++){
for(int j = 0; j < (1 << l); j++){
if(j & (1 << i))small[j] += small[j ^ (1 << i)];
else big[j] += big[j ^ (1 << i)];
}
}
if(l == 20 && q > 10000)return(0);
while(q--){
char c;
int zero = 0, one = 0, que = 0;
for(int i = 0; i < l; i++){
cin >> c;
if(c == '0')zero += (1 << (l - i - 1));
else if(c == '1')one += (1 << (l - i - 1));
else que += (1 << (l - i - 1));
}
int ans = 0;
if(__builtin_popcount(que) <= 6){
int mask = one;
for(int j = que;j; j = (j - 1) & que){
//cout << (mask | j) << " ";
ans += (s[mask | j] - '0');
}
ans += (s[mask] - '0');
}else if(__builtin_popcount(one) <= 6){
int mask = que;
for(int j = one;j; j = (j - 1) & one){
if((__builtin_popcount(one) - __builtin_popcount(j)) & 1)ans -= small[mask | j];
else ans += small[mask | j];
}
if((__builtin_popcount(one) - __builtin_popcount(mask)) & 1)ans -= small[mask];
else ans += small[mask];
}else{
int mask = one;
for(int j = zero;j; j = (j - 1) & zero){
if(__builtin_popcount(j) & 1)ans -= big[mask | j];
else ans += big[mask | j];
}
ans += big[mask];
}
cout << ans << "\n";
}
return(0);
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
336 KB |
Output is correct |
2 |
Incorrect |
1 ms |
340 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
336 KB |
Output is correct |
2 |
Incorrect |
1 ms |
340 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
336 KB |
Output is correct |
2 |
Incorrect |
1 ms |
340 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
336 KB |
Output is correct |
2 |
Incorrect |
1 ms |
340 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
336 KB |
Output is correct |
2 |
Incorrect |
1 ms |
340 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |