#include<bits/stdc++.h>
#define MAXN 800007
using namespace std;
const long long mod=1000002022;
int n,m,maxdep;
long long st[MAXN],total,diff,zeros,ans,a[MAXN];
vector<int> v[MAXN];
long long power(long long x,int y){
if(y==0)return 1;
if(y==1)return x;
if(y==2)return (x*x)%mod;
if(y%2==0)return power(power(x,y/2),2);
return (power(power(x,y/2),2)*x)%mod;
}
void dfs(int x,int dep){
maxdep=max(maxdep,dep);
for(int i=0;i<v[x].size();i++){
dfs(v[x][i],dep+1);
}
}
void dfs2(int x,int dep){
if(v[x].empty()){
st[x]=power(2,maxdep-dep+1);
return;
}
for(int i=0;i<v[x].size();i++){
dfs2(v[x][i],dep+1);
}
}
int tree[MAXN],lazy[MAXN];
void psh(int v,int l,int r){
if(lazy[v]==0)return;
int tt=(l+r)/2;
tree[2*v]=(tt-l+1)-tree[2*v];
lazy[2*v]^=1;
tree[2*v+1]=(r-(tt+1)+1)-tree[2*v+1];
lazy[2*v+1]^=1;
lazy[v]=0;
}
void update(int v,int l,int r,int ll,int rr){
if(ll>rr)return;
if(l==ll and r==rr){
tree[v]=(r-l+1)-tree[v];
lazy[v]^=1;
}else{
int tt=(l+r)/2;
psh(v,l,r);
update(2*v,l,tt,ll,min(tt,rr));
update(2*v+1,tt+1,r,max(tt+1,ll),rr);
tree[v]=tree[2*v]+tree[2*v+1];
}
}
void init(int N, int M,vector<int> P,vector<int> A){
n=N; m=M;
for(int i=1;i<N+M;i++){
v[P[i]].push_back(i);
}
dfs(0,0);
dfs2(0,0);
for(int i=0;i<M;i++){
a[i]=A[i];
ans+=a[i]*st[i+N];
ans%=mod;
}
cout<<ans<<"\n";
}
int count_ways(int L, int R){
L-=n; R-=n;
for(int i=L;i<=R;i++){
ans-=a[i]*st[i+n]; a[i]^=1;
ans+=a[i]*st[i+n]+mod;
ans%=mod;
}
return ans;
}
/*
int main(){
init(4, 5, {-1, 0, 0,1,1,2,2,3,3}, {1,1,1,1,1});
cout<<count_ways(15,29)<<"\n";
}
*/
Compilation message
circuit.cpp: In function 'void dfs(int, int)':
circuit.cpp:22:18: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
22 | for(int i=0;i<v[x].size();i++){
| ~^~~~~~~~~~~~
circuit.cpp: In function 'void dfs2(int, int)':
circuit.cpp:33:18: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
33 | for(int i=0;i<v[x].size();i++){
| ~^~~~~~~~~~~~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
9 ms |
19024 KB |
Possible tampering with the output or unexpected termination of the program |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
9 ms |
19024 KB |
Possible tampering with the output or unexpected termination of the program |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
9 ms |
19024 KB |
Possible tampering with the output or unexpected termination of the program |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
20 ms |
21412 KB |
Possible tampering with the output or unexpected termination of the program |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
20 ms |
21412 KB |
Possible tampering with the output or unexpected termination of the program |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
9 ms |
19024 KB |
Possible tampering with the output or unexpected termination of the program |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
9 ms |
19024 KB |
Possible tampering with the output or unexpected termination of the program |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
9 ms |
19024 KB |
Possible tampering with the output or unexpected termination of the program |
2 |
Halted |
0 ms |
0 KB |
- |