QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#747883 | #9727. Barkley III | yylx | WA | 11ms | 253564kb | C++14 | 3.3kb | 2024-11-14 18:35:37 | 2024-11-14 18:35:38 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
long long MAX=9223372036854775807;
//long long MAX=15;
long long n,q,x,y,z,w,as[2000001];
pair<long long,long long> re;
struct tree
{
int l,r;
long long x,sum,lt=-1;
};
tree tr[8000001];
void build_tree(int cl,int cr,int ind)
{
tr[ind].l=cl;
tr[ind].r=cr;
if(cl==cr)
{
tr[ind].sum=as[cl];
tr[ind].x=~as[cl];
return;
}
int m=cl+cr>>1;
build_tree(cl,m,ind<<1);
build_tree(m+1,cr,(ind<<1)+1);
tr[ind].sum=tr[ind<<1].sum&tr[(ind<<1)+1].sum;
tr[ind].x=(tr[ind<<1].sum&tr[(ind<<1)+1].x)|(tr[ind<<1].x&tr[(ind<<1)+1].sum);
}
void envalue(int ind,int v)
{
if(tr[ind].lt==-1) tr[ind].lt=v;
else tr[ind].lt&=v;
tr[ind].sum&=v;
if(tr[ind].l==tr[ind].r)
{
tr[ind].x=~tr[ind].sum;
return;
}
tr[ind].x&=v;
return;
}
void push_down(int ind)
{
if(tr[ind].lt==-1) return;
envalue(ind<<1,tr[ind].lt);
envalue((ind<<1)+1,tr[ind].lt);
tr[ind].lt=-1;
return;
}
void add(int cl,int cr,int al,int ar,int ind,long long v)
{
if(cl>=al && cr<=ar)
{
envalue(ind,v);
return;
}
push_down(ind);
int m=cl+cr>>1;
if(m>=al) add(cl,m,al,ar,ind<<1,v);
if(m<ar) add(m+1,cr,al,ar,(ind<<1)+1,v);
tr[ind].sum=tr[ind<<1].sum&tr[(ind<<1)+1].sum;
tr[ind].x=(tr[ind<<1].sum&tr[(ind<<1)+1].x)|(tr[ind<<1].x&tr[(ind<<1)+1].sum);
return;
}
pair<long long,long long> findx(int cl,int cr,int al,int ar,int ind)
{
int m=cl+cr>>1;
if(cl>=al && cr<=ar) return make_pair(tr[ind].sum,tr[ind].x);
push_down(ind);
int s1=MAX,s2=MAX,x1=0,x2=0;
if(m>=al) {re=findx(cl,m,al,ar,ind<<1);s1=re.first;x1=re.second;}
if(m<ar) {re=findx(m+1,cr,al,ar,(ind<<1)+1);s2=re.first;x2=re.second;}
return make_pair(s1&s2,(s1&x2)|(s2&x1));
}
void modify(int cl,int cr,int p,int ind,int v)
{
if(cl==cr)
{
tr[ind].sum=v;
tr[ind].x=~v;
return;
}
push_down(ind);
int m=cl+cr>>1;
if(m>=p) modify(cl,m,p,ind<<1,v);
else modify(m+1,cr,p,(ind<<1)+1,v);
tr[ind].sum=tr[ind<<1].sum&tr[(ind<<1)+1].sum;
tr[ind].x=(tr[ind<<1].sum&tr[(ind<<1)+1].x)|(tr[ind<<1].x&tr[(ind<<1)+1].sum);
}
long long locate(int cl,int cr,int al,int ar,int ind,int v)
{
int m=cl+cr>>1;
if(cl>=al && cr<=ar)
{
if((tr[ind].x&v)<=(v>>1)) return -1;
else
{
if(cl==cr) return tr[ind].sum;
else return max(locate(cl,m,al,ar,ind<<1,v),locate(m+1,cr,al,ar,(ind<<1)+1,v));
}
}
push_down(ind);
int l1=-1,l2=-1;
if(m>=al) l1=locate(cl,m,al,ar,ind<<1,v);
if(m<ar) l2=locate(m+1,cr,al,ar,(ind<<1)+1,v);
return max(l1,l2);
}
int main()
{
cin>>n>>q;
for(int i=1;i<=n;i+=1) cin>>as[i];
build_tree(1,n,1);
for(int i=1;i<=q;i+=1)
{
cin>>x;
if(x==1)
{
cin>>y>>z>>w;
add(1,n,y,z,1,w);
}
if(x==2)
{
cin>>y>>z;
modify(1,n,y,1,z);
}
if(x==3)
{
cin>>y>>z;
re=findx(1,n,y,z,1);
cout<<(re.first+(re.second&(~locate(1,n,y,z,1,re.second))))<<endl;
}
cout<<endl;
}
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 0
Wrong Answer
time: 11ms
memory: 253564kb
input:
5 9 7 7 7 6 7 3 1 5 2 1 3 3 1 5 3 1 3 1 1 2 3 3 1 3 2 2 8 3 1 3 3 1 2
output:
7 6 7 3 3 8
result:
wrong answer 2nd lines differ - expected: '6', found: ''