博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
hdu 4902 Nice boat--2014 Multi-University Training Contest 4
阅读量:4312 次
发布时间:2019-06-06

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

题目链接:http://acm.hdu.edu.cn/showproblem.php?

pid=4902

Nice boat

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


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
 

Recommend
 

 |   |   | 

这道题理论上讲应该算是线段树的题,只是不知道CLJ怎么想的。

。。数据微弱。

。直接给水过了。

。。

从后往前,遇到1的情况就更新,更新完之后再往下看,遇到2的更新。

#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
using namespace std;#define CLR(A) memset(A,0,sizeof(A))const int MAX=100010;struct Node{ int Q; int l,r,x;}t[MAX];int a[MAX];int gcd(int x,int y){ if(y==0) return x; else return(gcd(y,x%y));}void solve(int Q,int i,int x){ switch(Q){ case 1:a[i]=x; break; case 2:a[i]=a[i]>x?

gcd(a[i],x):a[i];break; } } int main(){ int T,n,m; while(cin>>T){ while(T--){ scanf("%d",&n); for(int i=1;i<=n;i++) scanf("%d",&a[i]); scanf("%d",&m); for(int i=0;i<m;i++){ scanf("%d%d%d%d",&t[i].Q, &t[i].l, &t[i].r , &t[i].x); } for(int i=1;i<=n;i++){ int j; for(j=m-1;j>=0;j--){ if(t[j].Q==1&&t[j].l<=i&&t[j].r>=i){ break; } } int k=j; solve(t[k].Q,i,t[k].x); for(int h=k+1;h<m;h++){ if(t[h].l<=i&&t[h].r>=i) solve(t[h].Q,i,t[h].x); } printf("%d ",a[i]); } printf("\n"); } } return 0; }

转载于:https://www.cnblogs.com/claireyuancy/p/6820363.html

你可能感兴趣的文章
Map<String,Object> map=new HashMap<String,Object>详解
查看>>
实现tap的多种方式
查看>>
UVA - 10494 If We Were a Child Again
查看>>
html5 canvas 渲染像素混合模式
查看>>
【hexo】01安装
查看>>
CI框架源码学习笔记2——Common.php
查看>>
005---书籍添加和编辑的提交数据
查看>>
使用case语句给字体改变颜色
查看>>
JAVA基础-多线程
查看>>
面试题5:字符串替换空格
查看>>
JSP九大内置对象及四个作用域
查看>>
OCAC公告
查看>>
Modernizr.js介绍与使用
查看>>
ConnectionString 属性尚未初始化
查看>>
解决Spring MVC无法接收AJAX使用PUT与DELETE请求传输的内容
查看>>
数据结构-栈 C和C++的实现
查看>>
发布功能完成
查看>>
C#获取客服端ip和用户名
查看>>
Asp.net MVC 之ActionResult
查看>>
jQuery Easy UI (适应屏幕分辨率大小)布局(Layout)
查看>>