Nice boat

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

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
 线段树,区间更新,1,给你区间,在那区间全都变为值给定的值,2,给你一个区间,在那每个区间的值ai大于给定的值s那么就把这个值改为gcd(ai,s),否则不变。

最后输出变化后的一组数。

用线段树写的,主要是利用mark标记 ,全部变成x的话直接把这段变成x,然后加个tree[i].mark就行了,如果往下更新,要把标记和数一起往下传具体看pushdown函数,查询的时候如果延迟标记存在的话直接把这一段输出,因为标记存在这一段肯定是相同的数。。

第2步操作主要是,如果什么已经标记了则全都是相同的数,比较一下求公约数。

如果没标记就要tree[i].left==tree[i].right。比较一下这个数,就行了。

#include<iostream>
#include<cstring>
#include<cstdio>
const int maxx=;
using namespace std;
int a[*maxx];
struct tree
{
int right,left;
int mark,num;
}tree[*maxx];
int gcd(int a,int b)
{
return b==?a:gcd(b,a%b);
}
void build(int i,int left,int right)
{
tree[i].left=left;
tree[i].right=right;
tree[i].mark=;
if(left==right)
{
tree[i].num=a[left];
return ;
}
int mid=(left+right)/;
build(*i,left,mid);
build(*i+,mid+,right);
}
void pushdown(int r)
{
if(tree[r].mark)
{
tree[*r].num=tree[*r+].num=tree[r].num;
tree[*r].mark=tree[*r+].mark=tree[r].mark;
tree[r].mark=;
}
}
void update(int r,int i,int j,int k)
{
int mid;
mid=(tree[r].left+tree[r].right)/;
if(tree[r].left>=i&&tree[r].right<=j)
{
tree[r].num=k;
tree[r].mark=;
return;
}
pushdown(r);//向下传递。
if(i>mid)
update(*r+,i,j,k);
else if(j<=mid)
update(r*,i,j,k);
else
{
update(*r,i,mid,k);
update(*r+,mid+,j,k);
}
}
void change(int r,int i,int j,int x)
{
int mid;
mid=(tree[r].left+tree[r].right)/;
if(tree[r].mark)
{
if(i<=tree[r].left&&j>=tree[r].right)
{
if(tree[r].num<=x)
return ;
else
{
tree[r].num=gcd(tree[r].num,x);
return ;
}
}
}
if(tree[r].left==tree[r].right)
{
if(tree[r].num>x)
{
tree[r].num=gcd(tree[r].num,x);
return ;
}
else
return ;
}
pushdown(r);
if(i>mid)
change(*r+,i,j,x);
else if(j<=mid)
change(r*,i,j,x);
else
{
change(*r,i,mid,x);
change(*r+,mid+,j,x);
}
}
void prit(int r)
{
int i;
if(tree[r].left==tree[r].right)
{
printf("%d ",tree[r].num);
return ;
}//
if(tree[r].mark)
{
for(i=tree[r].left;i<=tree[r].right;i++)
printf("%d ",tree[r].num);
return;
} prit(*r);
prit(*r+); }
int main()
{
int t,n,x,y,m,k,v,i;
scanf("%d",&t);
while(t--)
{
scanf("%d",&n);
for(i=;i<=n;i++)
scanf("%d",&a[i]); scanf("%d",&m);
build(,,n);
for(i=;i<=m;i++)
{
scanf("%d",&k);
if(k==)
{
scanf("%d%d%d",&x,&y,&v);
update(,x,y,v);
}
else
{
scanf("%d%d%d",&x,&y,&v);
change(,x,y,v);
} }
prit();
printf("\n");
}
return ;
}

HDU-4902 Nice boat的更多相关文章

  1. HDU 4902 Nice boat (线段树)

    Nice boat 题目链接: http://acm.hdu.edu.cn/showproblem.php?pid=4902 Description There is an old country a ...

  2. hdu 4902 Nice boat(线段树区间改动,输出终于序列)

    题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=4902 Problem Description There is an old country and ...

  3. HDU 4902 Nice boat 2014杭电多校训练赛第四场F题(线段树区间更新)

    题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=4902 解题报告:输入一个序列,然后有q次操作,操作有两种,第一种是把区间 (l,r) 变成x,第二种是 ...

  4. 线段树 + 区间更新 ----- HDU 4902 : Nice boat

    Nice boat Time Limit: 30000/15000 MS (Java/Others)    Memory Limit: 131072/131072 K (Java/Others)Tot ...

  5. HDU 4902 Nice boat --线段树(区间更新)

    题意:给一个数字序列,第一类操作是将[l,r]内的数全赋为x ,第二类操作是将[l,r]中大于x的数赋为该数与x的gcd,若干操作后输出整个序列. 解法: 本题线段树要维护的最重要的东西就是一个区间内 ...

  6. 2014多校第四场1006 || HDU 4902 Nice boat (线段树 区间更新)

    题目链接 题意 : 给你n个初值,然后进行两种操作,第一种操作是将(L,R)这一区间上所有的数变成x,第二种操作是将(L,R)这一区间上所有大于x的数a[i]变成gcd(x,a[i]).输出最后n个数 ...

  7. hdu 4902 Nice boat 线段树

    题目链接 给n个数, 两种操作, 第一种是将区间内的数变成x, 第二种是将区间内大于x的数变为gcd(x, a[i]). 开三个数组, 一个记录区间最大值, 这样可以判断是否更新这一区间, 一个laz ...

  8. HDU 4902 Nice boat 成段线段树

    操作1 的时候标记deng[rt]表示以下一段数都是与当前节点的值同样 下次操作2时直接对有deng标记的节点gcd更新 (可能还能够更简单) #include <stdio.h> #in ...

  9. HDU 4902 Nice boat 线段树+离线

    据说暴力也过了.还傻逼地写了这么长. . . #include <stdio.h> #include <string.h> #include <math.h> #i ...

  10. HDU 4902 Nice boat 多校4 线段树

    给定n个数 第一个操作和普通,区间覆盖性的,把l-r区间的所有值改成固定的val 第二个操作是重点,输入l r x 把l-r区间的所有大于x的数,变成gcd(a[i],x) a[i]即指满足条件的序列 ...

随机推荐

  1. Spring读书笔记-----Spring的Bean之设置Bean值

    [java] view plaincopyprint? Java实例的属性值可以有很多种数据类型.基本类型值.字符串类型.java实例甚至其他的Bean实例.java集合.数组等.所以Spring允许 ...

  2. jQuery UI 日期控件--datepicker

    在web开发中,日期的输入经常会遇到.我们会用的解决方法有: 1.自己写css和js,对日期进行控制:----有点浪费精力和时间: 2.用easyui插件中的日期插件来实现: 3.用juqery-ui ...

  3. asp.net mvc5 设置Area下的为启动页

    只需修改App_Start文件夹下RouteConfig中RegisterRoutes方法 public static void RegisterRoutes(RouteCollection rout ...

  4. [Twisted] 部署Twisted

    Twisted提供了基础设施,来实现可重用.可配置的方式来部署. 1.Service Twisted使用Service来实现了许多协议,如TCP,FTP,HTTP,SSH等. 实现的IService接 ...

  5. Object-C内存管理基础

    如果你通过手工alloc的方式分配内存实例化创建一个对象,之后你需要release这个对象,同理你也不能手工释放(release)一个能自动释放(autoreleased)的对象,因为这个样子会使你的 ...

  6. Android学习2--项目文件列表简单分析

    使用Eclipse创建的默认项目文件列表如下: src:src目录是Android工程的源程序目录,该目录用于存放Java项目的源代码 gen:gen目录存放所有自动生成的文件,在这个目录中最关键的文 ...

  7. C++中数字与字符串之间的转换

    原文地址:http://www.cnblogs.com/luxiaoxun/archive/2012/08/03/2621803.html 1.字符串数字之间的转换 (1)string --> ...

  8. XPATH 注入的介绍与代码防御

    0x01 介绍 软件未正确对 XML 中使用的特殊元素进行无害化处理,导致攻击者能够在终端系统处理 XML 的语法.内容或命令之前对其进行修改.在 XML 中,特殊元素可能包括保留字或字符,例如“&l ...

  9. PHP实现简易的模板引擎

    PHP实现简易的模板引擎 1.MVC简介 MVC 是一种使用 MVC(Model View Controller 模型-视图-控制器)设计创建 Web 应用程序的模式(详情自己百度): 1. Mode ...

  10. C# C/S系统软件开发平台架构图(原创)

    企业版V4.0 - 架构图 企业版V4.0 - 桥接功能.后台连接策略 桥接功能是指应用策略模式,由用户配置本地INI文件选择ADO直连(ADO-Direct)或者调用WCF服务接口访问远程服务器后台 ...