当前位置:   article > 正文

8.16.NOIP模拟赛(线段树求连续区间长度 | 前缀和单调栈)——2019暑假篇

8.16.NOIP模拟赛(线段树求连续区间长度 | 前缀和单调栈)——2019暑假篇

这次又考栽了

一.题目

1.Hotel

1.1.题目描述

传送门

1.2.题解

这道题目就是裸的线段树求最长连续区间长度,修改+查询的题目。

对于每个区间要定义:最长连续区间,左起最长连续区间,右起最长连续区间,懒标记,左右端点

下面一个一个的来说细节:

1.修改

找到被要修改区间覆盖的区间,修改它,修改时要注意如何更新区间的状态:

  1. //修改区间
  2. void Insert (int flag, int Index, int l, int r){
  3. push_down (Index);//懒标记下方
  4. if (tre[Index].L >= l && tre[Index].R <= r){
  5. if (flag == 1)//表示入住酒店
  6. tre[Index].lazy = 1, tre[Index].Max = tre[Index].Maxr = tre[Index].Maxl = 0;
  7. if (flag == -1)//表示退房
  8. tre[Index].lazy = -1, tre[Index].Max = tre[Index].Maxr = tre[Index].Maxl = tre[Index].R - tre[Index].L + 1;
  9. return ;
  10. }
  11. if (tre[Index].L > r || tre[Index].R < l)
  12. return ;
  13. Insert (flag, Index * 2, l, r);
  14. Insert (flag, Index * 2 + 1, l, r);
  15. renew (Index);//更新区间状态
  16. }
  1. void renew (int Index){
  2. if (tre[Index * 2].Max == tre[Index * 2].R - tre[Index * 2].L + 1)//最长左区间
  3. tre[Index].Maxl = tre[Index * 2].Max + tre[Index * 2 + 1].Maxl;
  4. //如果左区间全为空,最长左区间就为左区间长度+右区间的最长左区间
  5. else
  6. tre[Index].Maxl = tre[Index * 2].Maxl;
  7. if (tre[Index * 2 + 1].Max == tre[Index * 2 + 1].R - tre[Index * 2 + 1].L + 1)//最长右区间同理
  8. tre[Index].Maxr = tre[Index * 2 + 1].Max + tre[Index * 2].Maxr;
  9. else
  10. tre[Index].Maxr = tre[Index * 2 + 1].Maxr;
  11. tre[Index].Max = max (tre[Index * 2].Max, tre[Index * 2 + 1].Max);//最长区间
  12. tre[Index].Max = max (tre[Index].Max, tre[Index * 2].Maxr + tre[Index * 2 + 1].Maxl);
  13. }

2.查询

很简单,从左区间开始,看它是否有这么多的空房,再看中间的交界,再看右区间

  1. int Query (int Index, int d){
  2. push_down (Index);
  3. if (tre[Index].L == tre[Index].R)//说明找到了
  4. return tre[Index].L;
  5. if (tre[Index * 2].Max >= d)//看左区间
  6. return Query (Index * 2, d);
  7. if (tre[Index * 2].Maxr + tre[Index * 2 + 1].Maxl >= d)//看中间
  8. return tre[Index * 2].R - tre[Index * 2].Maxr + 1;
  9. if (tre[Index * 2 + 1].Max >= d)//看右区间
  10. return Query (Index * 2 + 1, d);
  11. return -1;
  12. }

1.3.Code

  1. //hotel
  2. #include <cstdio>
  3. #include <cstring>
  4. #include <iostream>
  5. using namespace std;
  6. #define M 50005
  7. int n, m, ans;
  8. struct node {
  9. int L, R, lazy, Max, Maxl, Maxr;
  10. }tre[M * 40];
  11. void build (int Index, int l, int r){
  12. tre[Index].L = l;
  13. tre[Index].R = r;
  14. tre[Index].Max = tre[Index].Maxl = tre[Index].Maxr = r - l + 1;
  15. if (l != r){
  16. int mid = (l + r) / 2;
  17. build (Index * 2, l, mid);
  18. build (Index * 2 + 1, mid + 1, r);
  19. }
  20. }
  21. void push_down (int Index){
  22. if (tre[Index].lazy == 1){
  23. tre[Index * 2].Max = tre[Index * 2].Maxl = tre[Index * 2].Maxr = 0;
  24. tre[Index * 2 + 1].Max = tre[Index * 2 + 1].Maxl = tre[Index * 2 + 1].Maxr = 0;
  25. tre[Index * 2].lazy = tre[Index * 2 + 1].lazy = 1;
  26. }
  27. if (tre[Index].lazy == -1){
  28. tre[Index * 2].Max = tre[Index * 2].Maxl = tre[Index * 2].Maxr = tre[Index * 2].R - tre[Index * 2].L + 1;
  29. tre[Index * 2 + 1].Max = tre[Index * 2 + 1].Maxl = tre[Index * 2 + 1].Maxr = tre[Index * 2 + 1].R - tre[Index * 2 + 1].L + 1;
  30. tre[Index * 2].lazy = tre[Index * 2 + 1].lazy = -1;
  31. }
  32. tre[Index].lazy = 0;
  33. }
  34. int Query (int Index, int d){
  35. push_down (Index);
  36. if (tre[Index].L == tre[Index].R)
  37. return tre[Index].L;
  38. if (tre[Index * 2].Max >= d)
  39. return Query (Index * 2, d);
  40. if (tre[Index * 2].Maxr + tre[Index * 2 + 1].Maxl >= d)
  41. return tre[Index * 2].R - tre[Index * 2].Maxr + 1;
  42. if (tre[Index * 2 + 1].Max >= d)
  43. return Query (Index * 2 + 1, d);
  44. return -1;
  45. }
  46. void renew (int Index){
  47. if (tre[Index * 2].Max == tre[Index * 2].R - tre[Index * 2].L + 1)
  48. tre[Index].Maxl = tre[Index * 2].Max + tre[Index * 2 + 1].Maxl;
  49. else
  50. tre[Index].Maxl = tre[Index * 2].Maxl;
  51. if (tre[Index * 2 + 1].Max == tre[Index * 2 + 1].R - tre[Index * 2 + 1].L + 1)
  52. tre[Index].Maxr = tre[Index * 2 + 1].Max + tre[Index * 2].Maxr;
  53. else
  54. tre[Index].Maxr = tre[Index * 2 + 1].Maxr;
  55. tre[Index].Max = max (tre[Index * 2].Max, tre[Index * 2 + 1].Max);
  56. tre[Index].Max = max (tre[Index].Max, tre[Index * 2].Maxr + tre[Index * 2 + 1].Maxl);
  57. }
  58. void Insert (int flag, int Index, int l, int r){
  59. push_down (Index);
  60. if (tre[Index].L >= l && tre[Index].R <= r){
  61. if (flag == 1)
  62. tre[Index].lazy = 1, tre[Index].Max = tre[Index].Maxr = tre[Index].Maxl = 0;
  63. if (flag == -1)
  64. tre[Index].lazy = -1, tre[Index].Max = tre[Index].Maxr = tre[Index].Maxl = tre[Index].R - tre[Index].L + 1;
  65. return ;
  66. }
  67. if (tre[Index].L > r || tre[Index].R < l)
  68. return ;
  69. Insert (flag, Index * 2, l, r);
  70. Insert (flag, Index * 2 + 1, l, r);
  71. renew (Index);
  72. }
  73. int main (){
  74. freopen ("hotel.in", "r", stdin);
  75. freopen ("hotel.out", "w", stdout);
  76. int f, x, d;
  77. scanf ("%d %d", &n, &m);
  78. build (1, 1, n);
  79. while (m --){
  80. scanf ("%d", &f);
  81. if (f == 1){
  82. scanf ("%d", &d);
  83. ans = Query (1, d);
  84. if (ans == -1){
  85. printf ("0\n");
  86. continue;
  87. }
  88. printf ("%d\n", ans);
  89. Insert (1, 1, ans, ans + d - 1);
  90. }
  91. if (f == 2){
  92. scanf ("%d %d", &x, &d);
  93. Insert (-1, 1, x, x + d - 1);
  94. }
  95. }
  96. return 0;
  97. }

2.sequence

2.1.题目

题目描述

给定n个正整数的序列a1,a2,a3…an,对该序列可执行下面的操作: 选择一个大于k的正整数ai,将ai的值减去1;选择ai-1或ai+1中的一个值加上1。 共给出m个正整数k,对于每次给定的正整数k,经过以上操作一定次数后,求出最长的一个连续子序列,使得这个子序列的每个数都不小于给定的k

输入格式

第一行两个正整数n和m。 第二行n个正整数,第i个正整数表示ai ; 第三行m个正整数,第i个正整数表示第i次给定的k。

输出格式

共一行,输出m个正整数,第i个数表示对于第i次给定的k,经过一定次数操作后,最长连续子序列的长度。

样例输入

  1. 5 6
  2. 1 2 1 1 5
  3. 1 2 3 4 5 6

输出样例

5 5 2 1 1 0

数据范围与提示

对于 30%的数据,n<30 对于 50%的数据,n<=2000 对于 100%的数据,n<=1,000,000 ,m<= 50, k <= 10^9, ai <= 10^9

2.2.题解

这道题目要注意关键词语:最长连续区间。

所以朴素的O(n2)算法就来了:求前缀和,前后枚举前缀和相减求最长区间


优化一点的,枚举后面的前缀和,发现前面的前缀和具有单调性

对于前面的前缀和:越前面的前缀和必须必后面一点的前缀和要大,那么后面一点的前缀和才有意义。

所以维护一个单调递减的单调栈:每遇到比栈顶小的就加入

然后每枚举到一个后面的前缀和,就二分查找单调栈里第一个比它小的前缀和,在统计答案即可。

但这样会被卡


再优一点,先处理出单调栈,如果我们从最后开始枚举后面的那一个前缀和,找到单调栈里第一个比它小的前缀和,把单调栈里后面的前缀和去掉,每次就这样操作就行了。

为什么呢?你想对于后面的那一个前缀和:越前面一点的前缀和在单调栈里对应的第一个比它小的前缀和的位置要比后面一点的前缀和对应的位置靠前才行,要不然要要亏!

好,挺简单,是吧。

2.3.Code

  1. #include <cstdio>
  2. #include <cstring>
  3. #include <iostream>
  4. using namespace std;
  5. #define M 1000005
  6. #define LL long long
  7. int n, m, a[M], Stack[M], top;
  8. bool flag;
  9. LL k, b[M], sum[M];
  10. void print (int ans){
  11. if (! flag){printf ("%d", ans); flag = 1;}
  12. else printf (" %d", ans);
  13. }
  14. int main (){
  15. //freopen ("sequence.in", "r", stdin);
  16. //freopen ("sequence.out", "w", stdout);
  17. scanf ("%d %d", &n, &m);
  18. for (int i = 1; i <= n; i ++){
  19. scanf ("%d", &a[i]);
  20. sum[i] = sum[i - 1] + a[i];
  21. }
  22. while (m --){
  23. int ans = 0;
  24. top = 0;
  25. scanf ("%lld", &k);
  26. Stack[++ top] = 0;
  27. for (int i = 1; i <= n; i ++){
  28. b[i] = sum[i] - i * k;
  29. if (b[i] < b[Stack[top]])
  30. Stack[++ top] = i;
  31. }
  32. for (int i = n; i >= 1; i --){
  33. int wei = i;
  34. if (b[Stack[1]] <= b[i]){
  35. ans = max (ans, i - Stack[1]);
  36. wei = Stack[1];
  37. top = 1;
  38. }
  39. else if (b[Stack[top]] <= b[i]){
  40. while (b[Stack[top]] <= b[i] && top)
  41. top --;
  42. top ++;
  43. ans = max (ans, i - Stack[top]);
  44. }
  45. }
  46. print (ans);
  47. }
  48. return 0;
  49. }

3.run

尽情期待。

二.总结

尽情期待.

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/weixin_40725706/article/detail/654278
推荐阅读
相关标签
  

闽ICP备14008679号