#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef long double ld;
int cnt[2][25], t[2][(1<<21) + 100], n;
void upd(int id, int pos){
int v = (1<<n)+pos;
int sz = 1;
int deep = n;
t[id][v] ^= 1;
v>>=1;
sz += sz;
--deep;
while(v){
if (t[id][v] % sz == 0){
--cnt[id][deep];
}
t[id][v] = t[id][v+v] + t[id][v+v+1];
if (t[id][v] % sz == 0)
++cnt[id][deep];
v>>=1;
sz += sz;
--deep;
}
}
int main(){
ios_base::sync_with_stdio(0);cin.tie(0);cout.tie(0);
int tt;
cin >> n >> tt;
for (int i = 0; i <= n; i++)
cnt[0][i] = cnt[1][i] = (1<<i);
while(tt--){
int type, x;
cin >> type >> x;
if (type == 0){
upd(0, x);
} else {
upd(1, x);
}
ll ans = ((1<<n)*(1<<n)-1)/3;
//cout << "kek " << ans << ' ';
for (int i = 0; i < n; i++){
ans -= (ll)cnt[0][i]*(ll)cnt[1][i];
//cout << i << ' ' << cnt[0][i] << ' ' << cnt[1][i] << endl;
}
cout << ans*4+1 << endl;
}
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
2 ms |
376 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
6 ms |
760 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
4579 ms |
62384 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |