1. 在大大推荐下这个标题不明的人做。而我的最后一个非常喜欢的段树,因此,愤怒出手。认为基本上相同。大值,当最大值小于取模时能够剪枝。
  2. 今后再遇到此类问题算是能攻克了
  3. // file name: d.cpp //
  4. // author: huangjipeng //
  5. // creat time: 2014年05月26日 星期一 16时40分18秒 //
  6. ///////////////////////////////////////////////////////
  7. #include<iostream>
  8. #include<cstdio>
  9. #include<cstdlib>
  10. #include<string.h>
  11. #include<math.h>
  12. #include<algorithm>
  13. #include<map>
  14. #include<vector>
  15. #include<queue>
  16. using namespace std;
  17. #define MAXN 100005
  18. struct node
  19. {
  20. int l,r;
  21. int mid;
  22. long long maxx;
  23. long long sum;
  24. }tree[MAXN<<2];
  25. void build(int l,int r,int now)
  26. {
  27. tree[now].l=l;
  28. tree[now].r=r;
  29. tree[now].mid=(l+r)>>1;
  30. if(l==r)
  31. {
  32. scanf("%I64d",&tree[now].maxx);
  33. tree[now].sum=tree[now].maxx;
  34. return ;
  35. }
  36. build(l,tree[now].mid,now<<1);
  37. build(tree[now].mid+1,r,now<<1|1);
  38. tree[now].sum=(tree[now<<1].sum+tree[now<<1|1].sum);
  39. tree[now].maxx=max(tree[now<<1].maxx,tree[now<<1|1].maxx);
  40. }
  41. long long query(int l,int r,int now)
  42. {
  43. if(tree[now].l==l && tree[now].r==r)
  44. return tree[now].sum;
  45. if(l>tree[now].mid)
  46. return query(l,r,now<<1|1);
  47. else if(r<=tree[now].mid)
  48. return query(l,r,now<<1);
  49. else
  50. return query(l,tree[now].mid,now<<1)+query(tree[now].mid+1,r,now<<1|1);
  51. }
  52. void update(int l,int r,long long x,int now)
  53. {
  54. if(tree[now].maxx<x)
  55. return ;
  56. if(tree[now].l==tree[now].r)
  57. {
  58. tree[now].sum=tree[now].sum%x;
  59. tree[now].maxx=tree[now].sum;
  60. return ;
  61. }
  62. if(l>tree[now].mid)
  63. update(l,r,x,now<<1|1);
  64. else if(r<=tree[now].mid)
  65. update(l,r,x,now<<1);
  66. else
  67. {
  68. update(l,tree[now].mid,x,now<<1);
  69. update(tree[now].mid+1,r,x,now<<1|1);
  70. }
  71. tree[now].sum=tree[now<<1].sum+tree[now<<1|1].sum;
  72. tree[now].maxx=max(tree[now<<1].maxx,tree[now<<1|1].maxx);
  73. }
  74. void op3(int k,long long x,int now)
  75. {
  76. if(tree[now].l==k && tree[now].r==k)
  77. {
  78. tree[now].maxx=tree[now].sum=x;
  79. return ;
  80. }
  81. if(k>tree[now].mid)
  82. op3(k,x,now<<1|1);
  83. else
  84. op3(k,x,now<<1);
  85. tree[now].sum=(tree[now<<1].sum+tree[now<<1|1].sum);
  86. tree[now].maxx=max(tree[now<<1].maxx,tree[now<<1|1].maxx);
  87. }
  88. int main()
  89. {
  90. int n,m;
  91. cin>>n>>m;
  92. build(1,n,1);
  93. while(m--)
  94. {
  95. int op;
  96. scanf("%d",&op);
  97. if(op==1)
  98. {
  99. int l,r;
  100. scanf("%d%d",&l,&r);
  101. cout<<query(l,r,1)<<endl;
  102. }
  103. else if(op==2)
  104. {
  105. int l,r;
  106. long long x;
  107. scanf("%d%d%I64d",&l,&r,&x);
  108. update(l,r,x,1);
  109. }
  110. else if(op==3)
  111. {
  112. int k;
  113. long long x;
  114. scanf("%d%I64d",&k,&x);
  115. op3(k,x,1);
  116. }
  117. }
  118. return 0;
  119. }

版权声明:本文博主原创文章,博客,未经同意不得转载。

codeforces 438D的更多相关文章

  1. Codeforces 438D (今日gg模拟第二题) | 线段树 考察时间复杂度的计算 -_-|||

    Codeforces 438D The Child and Sequence 给出一个序列,进行如下三种操作: 区间求和 区间每个数模x 单点修改 如果没有第二个操作的话,就是一棵简单的线段树.那么如 ...

  2. Codeforces 438D The Child and Sequence - 线段树

    At the children's day, the child came to Picks's house, and messed his house up. Picks was angry at ...

  3. Codeforces 438D The Child and Sequence

    题意:给定一个n个数的序列,完成以下3个操作: 1.给定区间求和 2.给定区间对x取模 3.单点修改 对一个数取模,这个数至少折半.于是我们记一个最大值max,如果x>max则不做处理. #in ...

  4. 【codeforces 438D】The Child and Sequence

    [原题题面]传送门 [大致题意] 给定一个长度为n的非负整数序列a,你需要支持以下操作: 1:给定l,r,输出a[l]+a[l+1]+…+a[r]. 2:给定l,r,x,将a[l],a[l+1],…, ...

  5. 题解——CodeForces 438D The Child and Sequence

    题面 D. The Child and Sequence time limit per test 4 seconds memory limit per test 256 megabytes input ...

  6. 2018.07.23 codeforces 438D. The Child and Sequence(线段树)

    传送门 线段树维护区间取模,单点修改,区间求和. 这题老套路了,对一个数来说,每次取模至少让它减少一半,这样每次单点修改对时间复杂度的贡献就是一个log" role="presen ...

  7. CodeForces - 438D: The Child and Sequence(势能线段树)

    At the children's day, the child came to Picks's house, and messed his house up. Picks was angry at ...

  8. CodeForces 438D 线段树 剪枝

    D. The Child and Sequence time limit per test 4 seconds memory limit per test 256 megabytes input st ...

  9. CodeForces 438D The Child and Sequence (线段树 暴力)

    传送门 题目大意: 给你一个序列,要求在序列上维护三个操作: 1)区间求和 2)区间取模 3)单点修改 这里的操作二很讨厌,取模必须模到叶子节点上,否则跑出来肯定是错的.没有操作二就是线段树水题了. ...

随机推荐

  1. 使用Intellij Idea生成可执行文件jar,开关exe文件步骤

    确保其Java代码是没有问题的,在IDEA常执行的,然后.按以下步骤: 步骤一:打开File -> Project Structure -> Artifacts,例如以下图 步骤二:点击& ...

  2. 几种流行Webservice控制框架

     转会[http://blog.csdn.net/thunder4393/article/details/5787121],写的非常好,以收藏. 1      摘要 开发webservice应用程序中 ...

  3. 2014年CCNU-ACM暑期集训总结

    2014年CCNU-ACM暑期集训总结 那个本期待已久的暑期集训居然就这种.溜走了.让自己有点措手不及.很多其它的是对自己的疑问.自己是否能在ACM这个领域有所成就.带着这个疑问,先对这个暑假做个总结 ...

  4. 同一个PC只能运行一个应用实例(考虑多个用户会话情况)

    原文:同一个PC只能运行一个应用实例(考虑多个用户会话情况) class Program { private static Mutex m; [STAThread] static void Main( ...

  5. 左右canvas.drawArc,canvas.drawOval 和RectF 关联

    1.paint.setStyle(Paint.Style.STROKE) // radius="100dp" // interRadius="40dp" // ...

  6. List、Map和Set实现类

    List.Map和Set实现类 1.List实现类 (1)ArrayList (2)Vector 2.Map实现类 (1)HashMap (2)Hashtable 3.Set实现类 (1)HashSe ...

  7. vpdn详细说明

     VPDN英文为Virtual Private Dial-up Networks,又称为虚拟专用拨号网,是VPN业务的一种,是基于拨号用户的虚拟专用拨号网业务. 中文名 虚拟专用拨号网业务 外文名 ...

  8. 最短路径:Dijkstra,Bellman,SPFA,Floyd该算法的实施

    watermark/2/text/aHR0cDovL2Jsb2cuY3Nkbi5uZXQvdTAxMzQ4NzA1MQ==/font/5a6L5L2T/fontsize/400/fill/I0JBQk ...

  9. ef添加字段

    先在实体类里添加字段 ,然后执行 Add-Migration updateNumberOfLikes Update-Database -Verbose

  10. Atitit. 拉开拉链zip文件 最佳实践实施 java c# .net php

    Atitit. 拉开拉链zip文件 的实现最佳实践 java c# .net php 1. Jdk zip 跟apache ant zip 1 2. Apache Ant包进行ZIP文件压缩,upzi ...