博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
HDU 4902 Nice boat(线段树)
阅读量:7091 次
发布时间:2019-06-28

本文共 4626 字,大约阅读时间需要 15 分钟。

多校中的线段树,看题解出题人的意思这道题目应该不简单。可是好像数据比較弱啊。居然能够水过去啊、、、

用一个标记。标记当前这一段是否被更新过。假设更新过就为1,否则为0。

一定要注意最后一个空格输出。

Nice boat

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


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
 

Source
#include 
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#define max( x, y ) ( ((x) > (y)) ?

(x) : (y) ) #define min( x, y ) ( ((x) < (y)) ?

(x) : (y) ) #define Mod 1000000007 #define LL long long using namespace std; const int maxn = 100010; struct node { int l, r; int flag; LL x; } f[maxn*4]; LL num[maxn]; void Bulid(int l, int r, int site) { f[site].l = l; f[site].r = r; f[site].flag = 0; if(l == r) { f[site].x = num[l]; f[site].flag = 1; return; } int mid = (l+r)/2; Bulid(l, mid, site<<1); Bulid(mid+1, r, site<<1|1); } void Output(int l, int r, int site) { if(l == r) { printf("%I64d ",f[site].x); return; } if(f[site].flag) { f[site<<1].flag = f[site<<1|1].flag = 1; f[site<<1].x = f[site<<1|1].x = f[site].x; } int mid = (l+r)/2; Output(l, mid, site<<1); Output(mid+1, r, site<<1|1); } void Change(int l, int r, LL x, int site) { if(l == f[site].l && r == f[site].r) { f[site].x = x; f[site].flag = 1; return; } if(f[site].flag) { f[site<<1].flag = f[site<<1|1].flag = 1; f[site<<1].x = f[site<<1|1]. x = f[site].x; f[site].flag = 0; } int mid = (f[site].l+f[site].r)/2; if(r <= mid) Change(l, r, x, site<<1); else if(l > mid) Change(l, r, x, site<<1|1); else { Change(l, mid, x, site<<1); Change(mid+1, r, x, site<<1|1); } } void Updata(int l, int r, LL x, int site) { if(f[site].l == l && f[site].r == r && f[site].flag) { if(f[site].x > x) f[site].x = __gcd(f[site].x, x); return; } if(f[site].flag) { f[site<<1].flag = f[site<<1|1].flag = 1; f[site<<1].x = f[site<<1|1]. x = f[site].x; f[site].flag = 0; } int mid = (f[site].l+f[site].r)/2; if(r <= mid) Updata(l, r, x, site<<1); else if(l > mid) Updata(l, r, x, site<<1|1); else { Updata(l, mid, x, site<<1); Updata(mid+1, r, x, site<<1|1); } } int main() { int T; cin >>T; int n, m; while(T--) { scanf("%d",&n); for(int i = 1; i <= n; i++) scanf("%I64d",&num[i]); Bulid(1, n, 1); scanf("%d",&m); int x, l, r; LL xx; while(m--) { scanf("%d %d %d %I64d",&x, &l, &r, &xx); if(x == 1) Change(l, r, xx, 1); else Updata(l, r, xx, 1); } Output(1, n, 1); puts(""); } return 0; }

转载地址:http://uonql.baihongyu.com/

你可能感兴趣的文章
jquery html动态添加的元素绑定事件详解
查看>>
日常英语---九、MapleStory Link Skills Guide
查看>>
最强科技实力支撑海尔走出“全球化”道路
查看>>
“平潭-高雄”货运直航顺利首航
查看>>
2018年澳门赌场毛收入增14% 贵宾厅增长放缓
查看>>
杭州机场春运预计起降航班3.3万架次 国际和地区增开428架次
查看>>
『中级篇』 Linux网络命名空间(25)
查看>>
JS计算精度小记
查看>>
js的各种距离计算(较全)
查看>>
微信小程序异步API为Promise简化异步编程
查看>>
关于java泛型大大小小的那些事
查看>>
此面试题版本落后-请勿观看
查看>>
Stream流与Lambda表达式(三) 静态工厂类Collectors
查看>>
javascript 面向对象 new 关键字 原型链 构造函数
查看>>
日剧·日综资源集合(建议收藏)
查看>>
[译]go错误处理
查看>>
彩铅练习,樱桃
查看>>
yum 找不到程序, yum更换国内阿里源
查看>>
快速排序
查看>>
tomcat 、springboot远程调试
查看>>