Description
There 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.
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
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
1 indicates changing the range to X. 2 indicates changing the range to a GCD of two numbers.
Train of Thought: Line Segment tree interval modification, the train of thought given by teammates. One more flag represents whether the number of this interval is the same
#include <iostream>#include <cstring>#include <cstdio>#include <algorithm>#include <cmath>#define lson(x) ((x) << 1)#define rson(x) ((x) << 1 | 1)typedef long long ll;using namespace std;const int MAXN = 100005;const int ROOT = 1;int gcd(int a,int b) {return b?gcd(b,a%b):a;}struct seg {int w;int v;int flag;};struct segment_tree {seg node[MAXN << 2];void update(int pos) {node[pos].flag = (node[lson(pos)].flag && node[rson(pos)].flag && node[lson(pos)].w == node[rson(pos)].w);node[pos].w = node[lson(pos)].w;}void build(int l, int r, int pos) {node[pos].flag = 0;node[pos].v = -1;if (l == r) {scanf("%d", &node[pos].w);node[pos].flag = 1;return;}int m = l + r >> 1;build(l, m, lson(pos));build(m + 1, r, rson(pos));update(pos);}void push(int l, int r, int pos) {if (node[pos].v != -1) {node[lson(pos)].v = node[rson(pos)].v = node[pos].v;node[lson(pos)].w = node[rson(pos)].w = node[pos].v;node[pos].v = -1;;}}void modify(int l, int r, int pos, int x, int y, int z) {if (x <= l && r <= y) {node[pos].w = z;node[pos].v = z;;/* node[pos].flag = z; is wrong. */return;}push(l, r, pos);int m = l + r >> 1;if (x <= m) modify(l, m, lson(pos), x, y, z);if (y > m) modify(m + 1, r, rson(pos), x, y, z);update(pos);}void modify1(int l, int r, int pos, int x, int y, int z) {if (node[pos].flag && node[pos].w <= z)return;if (x <= l && y >= r && node[pos].flag) {node[pos].w = gcd(node[pos].w, z);node[pos].v = node[pos].w;return;}push(l, r, pos);int m = l + r >> 1;if (x <= m) modify1(l, m, lson(pos), x, y, z);if (y > m) modify1(m + 1, r, rson(pos), x, y, z);update(pos);}int query(int l, int r, int pos, int x, int y) {if (x <= l && r <= y) return node[pos].w;push(l, r, pos);int m = l + r >> 1;int res = 0;if (x <= m) res += query(l, m, lson(pos), x, y);if (y > m) res += query(m + 1, r, rson(pos), x, y);return res;}} tree;int main() {int t, n, m;scanf("%d", &t);while (t--) {scanf("%d", &n);tree.build(1, n, 1);scanf("%d", &m);int op, l, r, x;while (m--) {scanf("%d%d%d%d", &op, &l, &r, &x);if (op == 1)tree.modify(1, n, 1, l, r, x);else tree.modify1(1, n, 1, l, r, x);}for (int i = 1; i <= n; i++)printf("%d ", tree.query(1, n, 1, i, i));printf("\n");}return 0;}