Question link: http://acm.hdu.edu.cn/showproblem.php? PID = 1, 4902
Problem descriptionthere is an old country and the king fell in love with a dedevil. the dedevil 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 dedevil. also, this dedevil 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, since people died but no one knows why and everyone is fine about that. Meanwhile, the dedevil 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 shoshould output the final sequence.
Inputthe 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 ++)Outputfor 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 sequenceSample Input
11016807 282475249 1622650073 984943658 1144108930 470211272 101027544 1457850878 1458777923 2007237709 101 3 6 742430422 4 8 165317291 3 4 14748331692 1 8 11315709332 7 9 15057953352 3 7 1019292671 4 10 16243791492 2 8 21100106722 6 7 1560917451 2 5 937186357
Sample output
16807 937186357 937186357 937186357 937186357 1 1 1624379149 1624379149 1624379149
Authorwjmzbmr source2014 multi-university training contest 4
Question meaning:
Given an array of N and M operations, there are two types of operations: 1, 1, L, R, X, that is, changing all elements in the [L, R] segment to X. 2, 2, L, R, and X convert all the elements in the [L, R] segment greater than X into the maximum common divisor between the element and X.
The Code is as follows:
# Include <cstdio> # include <algorithm> # include <iostream> using namespace STD; # define ll long longconst int maxn = 111111; # define ls (RT <1) # define RS (RT <1 | 1) # define lson L, mid, ls # define rson Mid + 1, R, RS // The num array indicates whether the range is the same number. If it is num, It is equal to this number. Otherwise, the-1int num [maxn <2]; // flag, indicates whether the range should be solid (into a number ). Int flag [maxn <2]; // The mMax array indicates the maximum value of the range, because GCD only takes effect for the range greater than X. Int mMax [maxn <2]; int gcd (int A, int B) {return? Gcd (B % A, A): B;} void pushup (INT RT) {If (Num [ls] = num [RS]) num [RT] = num [ls]; elsenum [RT] =-1; mMax [RT] = max (mMax [ls], mMax [RS]);} void Pushdown (int rt) {If (flag [RT]! =-1) {flag [ls] = Flag [RS] = Flag [RT]; mMax [ls] = mMax [RS] = mMax [RT]; num [ls] = num [RS] = num [RT]; flag [RT] =-1 ;}} void build (int l, int R, int RT) {flag [RT] =-1; if (L = r) {scanf ("% d", & num [RT]); mMax [RT] = num [RT]; // initialize return;} int mid = (L + r)> 1; build (lson); Build (rson ); pushup (RT);} void Update (int l, int R, int X, int L, int R, int RT) {If (L <= L & R <= r) {flag [RT] = num [RT] = mMax [RT] = x; return;} Pushdown (RT ); int mid = (L + r)> 1; if (L <= mid) Update (L, R, X, lson); If (mid <r) Update (L, r, X, rson); pushup (RT);} void modify (int l, int R, int X, int L, int R, int RT) {If (L <= L & R <= R & num [RT]> X) {flag [RT] = num [RT] = mMax [RT] = gcd (Num [RT], x); return;} Pushdown (RT ); int mid = (L + r)> 1; if (L <= Mid & mMax [ls]> X) Modify (L, R, X, lson ); if (mid <R & mMax [RS]> X) Modify (L, R, X, rson); pushup (RT) ;}void cout (int l, int R, int RT) {If (L = r) {printf ("% d", num [RT]); return;} Pushdown (RT ); int mid = (L + r)> 1; cout (lson); cout (rson);} int main () {int t; int R, L; int N, m; int op, L, R, X; int I, j, k; scanf ("% d", & T); While (t --) {scanf ("% d", & N); Build (1, n, 1); scanf ("% d", & M); for (I = 0; I <m; I ++) {scanf ("% d", & OP, & L, & R, & X ); if (OP = 1) {Update (L, R, X, 1, n, 1);} else if (OP = 2) {modify (L, R, x, 1, n, 1) ;}} cout (1, n, 1); printf ("\ n") ;}return 0 ;}