CodeForces 438D The Child and Sequence(线段树)

清疚 2021-11-01 17:58 351阅读 0赞

题目链接:http://codeforces.com/problemset/problem/438/D
At the children’s day, the child came to Picks’s house, and messed his house up. Picks was angry at him. A lot of important things were lost, in particular the favorite sequence of Picks.
Fortunately, Picks remembers how to repair the sequence. Initially he should create an integer array a[1], a[2], …, a[n]. Then he should perform a sequence of m operations. An operation can be one of the following:
Print operation l, r. Picks should write down the value of .
Modulo operation l, r, x. Picks should perform assignment a[i] = a[i] mod x for each i (l ≤ i ≤ r).
Set operation k, x. Picks should set the value of a[k] to x (in other words perform an assignment a[k] = x).
Can you help Picks to perform the whole sequence of operations?
Input
The first line of input contains two integer: n, m (1 ≤ n, m ≤ 105). The second line contains n integers, separated by space: a[1], a[2], …, a[n] (1 ≤ a[i] ≤ 109) — initial value of array elements.
Each of the next m lines begins with a number type .
If type = 1, there will be two integers more in the line: l, r (1 ≤ l ≤ r ≤ n), which correspond the operation 1.
If type = 2, there will be three integers more in the line: l, r, x (1 ≤ l ≤ r ≤ n; 1 ≤ x ≤ 109), which correspond the operation 2.
If type = 3, there will be two integers more in the line: k, x (1 ≤ k ≤ n; 1 ≤ x ≤ 109), which correspond the operation 3.

Output
For each operation 1, please print a line containing the answer. Notice that the answer may exceed the 32-bit integer.
Examples
Input
5 5
1 2 3 4 5
2 3 5 4
3 3 5
1 2 5
2 1 3 3
1 1 3
Output
8
5
Input
10 10
6 9 6 7 6 1 10 10 9 5
1 3 9
2 7 10 9
2 5 10 8
1 4 7
3 3 7
2 7 9 9
1 2 4
1 6 6
1 5 9
3 1 10
Output
49
15
23
1
9

Note
Consider the first testcase:
At first, a = {1, 2, 3, 4, 5}.
After operation 1, a = {1, 2, 3, 0, 1}.
After operation 2, a = {1, 2, 5, 0, 1}.
At operation 3, 2 + 5 + 0 + 1 = 8.
After operation 4, a = {1, 2, 2, 0, 1}.
At operation 5, 1 + 2 + 2 = 5.

分析:
题目要求:单点更新,区间求和,区间更新。
对于前两个来说,我们是很容易维护的。但是第三个是维护a[i]%x。这个值应该怎么维护呢?暴力维护? 看到题目的时限还算长,又是单组测试。也许可以,不过不保险。
对于这种情况,我们可以在结点中在维护一个结点最大值,这样如果x大于结点最大值,那么他继续搜下去,也就没有什么意义了。这个操作有点类似dfs的减枝把。

  1. #include"stdio.h"
  2. #include"string.h"
  3. #include"algorithm"
  4. using namespace std;
  5. typedef long long ll;
  6. const int N = 100010;
  7. ll sum[N << 2];
  8. int max_val[N << 2],val[N << 2];
  9. int T,a[N],n,m;
  10. void Push_down(int id)
  11. {
  12. sum[id] = sum[id << 1] + sum[id << 1 | 1];
  13. max_val[id] = max(max_val[id << 1],max_val[id << 1 | 1]);
  14. return ;
  15. }
  16. void Build_Tree(int id,int l,int r)
  17. {
  18. sum[id] = 0; max_val[id] = -1;
  19. if(l == r)
  20. {
  21. val[id] = a[l];
  22. sum[id] = a[l]; max_val[id] = a[l];
  23. return ;
  24. }
  25. int mid = (l + r) >> 1;
  26. Build_Tree(id << 1,l,mid);
  27. Build_Tree(id << 1 | 1,mid + 1,r);
  28. Push_down(id);
  29. }
  30. ll Query_sum(int id,int L,int R,int l,int r)
  31. {
  32. if(l <= L && r >= R) return sum[id];
  33. int mid = (L + R) >> 1;
  34. ll ans = 0;
  35. if(l <= mid) ans += Query_sum(id << 1,L,mid,l,r);
  36. if(r > mid) ans += Query_sum(id << 1 | 1,mid + 1,R,l,r);
  37. return ans;
  38. }
  39. void Update(int id,int L,int R,int x,int v)
  40. {
  41. if(L == R)
  42. {
  43. max_val[id] = v; sum[id] = v; val[id] = v;
  44. return ;
  45. }
  46. int mid = (L + R) >> 1;
  47. if(x <= mid) Update(id << 1,L,mid,x,v);
  48. else Update(id << 1 | 1,mid + 1,R,x,v);
  49. Push_down(id);
  50. }
  51. void Update_query(int id,int L,int R,int l,int r,int v)
  52. {
  53. if(v > max_val[id]) return ;
  54. if(L == R)
  55. {
  56. val[id] = val[id] % v;
  57. max_val[id] = val[id];
  58. sum[id] = val[id]; return ;
  59. }
  60. int mid = (L + R) >> 1;
  61. if(l <= mid) Update_query(id << 1,L,mid,l,r,v);
  62. if(r > mid) Update_query(id << 1 | 1,mid + 1,R,l,r,v);
  63. Push_down(id);
  64. }
  65. int main()
  66. {
  67. scanf("%d%d",&n,&m);
  68. for(int i = 1; i <= n; i ++)
  69. scanf("%d",&a[i]);
  70. Build_Tree(1,1,n);
  71. for(int i = 1; i <= m;i ++)
  72. {
  73. int op,x,y;
  74. scanf("%d%d%d",&op,&x,&y);
  75. if(op == 1)
  76. {
  77. printf("%lld\n",Query_sum(1,1,n,x,y));
  78. }
  79. if(op == 2)
  80. {
  81. int t; scanf("%d",&t);
  82. Update_query(1,1,n,x,y,t);
  83. }
  84. if(op == 3)
  85. {
  86. Update(1,1,n,x,y);
  87. }
  88. }
  89. }

发表评论

表情:
评论列表 (有 0 条评论,351人围观)

还没有评论,来说两句吧...

相关阅读

    相关 Codeforces 343D 线段

    题意:给你一颗以点1为根的数,有两种操作,一种是把x及其子树的所有点都灌满水,一种是把x及其所有祖先都放空水,一种是询问,问某个点里有没有水? 思路:看网上大多数是树剖,但实