hdu 4902 Nice boat(线段树区间更新lazytag·单点更新)

网友投稿 400 2022-08-31

hdu 4902 Nice boat(线段树区间更新lazytag·单点更新)

题目:​​boat

Time Limit: 30000/15000 MS (Java/Others)    Memory Limit: 131072/131072 K (Java/Others) Total Submission(s): 1925    Accepted Submission(s): 867

Problem Description

There is an old country and the king fell in love with a devil. The devil always asks the king to do some crazy things. Although the king used to be wise and beloved by his people. Now he is just like a boy in love and can’t refuse any request from the devil. Also, this devil is looking like a very cute Loli. Let us continue our story, z*p(actually you) defeat the 'MengMengDa' party's leader, and the 'MengMengDa' party dissolved. z*p becomes the most famous guy among the princess's knight party.  One day, the people in the party find that z*p has died. As what he has done in the past, people just say 'Oh, what a nice boat' and don't care about why he died. Since then, many people died but no one knows why and everyone is fine about that. Meanwhile, the devil sends her knight to challenge you with Algorithm contest. There is a hard data structure problem in the contest: There are n numbers a_1,a_2,...,a_n on a line, everytime you can change every number in a segment [l,r] into a number x(type 1), or change every number a_i in a segment [l,r] which is bigger than x to gcd(a_i,x) (type 2). You should output the final sequence.

Input

The first line contains an integer T, denoting the number of the test cases. For each test case, the first line contains a integers n. The next line contains n integers a_1,a_2,...,a_n separated by a single space. The next line contains an integer Q, denoting the number of the operations. The next Q line contains 4 integers t,l,r,x. t denotes the operation type. T<=2,n,Q<=100000 a_i,x >=0 a_i,x is in the range of int32(C++)

Output

For each test case, output a line with n integers separated by a single space representing the final sequence. Please output a single more space after end of the sequence

Sample Input

1 10 16807 282475249 1622650073 984943658 1144108930 470211272 101027544 1457850878 1458777923 2007237709 10 1 3 6 74243042 2 4 8 16531729 1 3 4 1474833169 2 1 8 1131570933 2 7 9 1505795335 2 3 7 101929267 1 4 10 1624379149 2 2 8 2110010672 2 6 7 156091745 1 2 5 937186357

Sample Output

16807 937186357 937186357 937186357 937186357 1 1 1624379149 1624379149 1624379149

Author

WJMZBMR

分析:我觉得这里面既有区间更新,也有单点更新。前者利用lazytag保证了效率,后者保证了准确率。

one more再一个,再一次. "Please output a single more space after end of the sequence"每个序列末尾会有一个空格。我的英语~~~

#include #include using namespace std;#define lt 2*root#define rt 2*root+1const int maxn=1e5+10;struct node{ int l,r,val,tag; int mid(){ return (l+r)/2; }}tr[maxn*3];void build(int root,int ll,int rr){ tr[root].l=ll; tr[root].r=rr; tr[root].val=0; tr[root].tag=-1; if(ll==rr) return ; int m=tr[root].mid(); build(lt,ll,m); build(rt,m+1,rr);}void insert(int root,int dex,int val){ if(tr[root].l==tr[root].r) { tr[root].val=val; return ; } int m=tr[root].mid(); if(dex<=m) insert(lt,dex,val); //<= !! else insert(rt,dex,val);}void update1(int root,int ll,int rr,int x){ if(ll==tr[root].l&&rr==tr[root].r){ tr[root].val=x; tr[root].tag=1; //这一区间全是一样的数字 return ; } if(tr[root].tag!=-1){ tr[lt].tag=tr[root].tag; tr[lt].val=tr[root].val; tr[rt].tag=tr[root].tag; tr[rt].val=tr[root].val; tr[root].tag=-1; tr[root].val=0; } int m=tr[root].mid(); if(ll>m) update1(rt,ll,rr,x); else if(rr<=m) update1(lt,ll,rr,x); else { update1(lt,ll,m,x); update1(rt,m+1,rr,x); }}int gcd(int a,int b){ if(a==0) return b; return b?gcd(b,a%b):a;}void update2(int root,int ll,int rr,int x){ if(ll==tr[root].l&&rr==tr[root].r&&tr[root].tag!=-1){ if(tr[root].val>x)tr[root].val=gcd(tr[root].val,x); return ; } if(tr[root].l==tr[root].r){ if(tr[root].val>x)tr[root].val=gcd(tr[root].val,x); return ; } if(tr[root].tag!=-1){ tr[lt].tag=tr[root].tag; tr[lt].val=tr[root].val; tr[rt].tag=tr[root].tag; tr[rt].val=tr[root].val; tr[root].tag=-1; } int m=tr[root].mid(); if(ll>m) update2(rt,ll,rr,x); else if(rr<=m) update2(lt,ll,rr,x); else { update2(lt,ll,m,x); update2(rt,m+1,rr,x); }}int psum;void print(int root,int dex){ if(tr[root].l!=tr[root].r&&tr[root].tag!=-1){ int length=tr[root].r-tr[root].l+1; for(int i=0;i>T; while(T--){ scanf("%d",&n); build(1,1,n); for(int i=1;i<=n;i++){ scanf("%d",&a); insert(1,i,a); } scanf("%d",&q); int t,l,r,x,i; for(i=0;i

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:双十一小红书营销号角拉响,你的同行这样挑选达人GMV破亿!(小红书事件营销)
下一篇:poj 3233 Matrix Power Series(矩阵乘法·二分等比数列)
相关文章

 发表评论

暂时没有评论,来抢沙发吧~