当前位置:   article > 正文

HDU - 6602 Longest Subarray(线段树+思维)_hdu6602

hdu6602

题目链接:点击查看

题目大意:给出一个长度为 n 的序列,每个数字的范围是 [ 1 , C ] ,现在需要求一个子串,使得字串中的字母,要么出现 0 次,要么出现至少 K 次,问这个子串的最大长度是多少

题目分析:第一反应是二分+尺取,但感觉会超时,正解是线段树,枚举 1 ~ n 作为子串的右端点,然后贪心找符合条件的左端点

对于任意一个位置 i ,再对于任意一个数字 b 来说,设 pos1 是数字 b 从位置 i 向左开始第一次出现的位置,pos2 是第 k 次出现的位置,pos3 是第 k - 1 次出现的位置(下面会用到),则对于数字 b 来说,可以选择的左端点的区间范围是 [ 1 , pos2 ] 和 [ pos1 + 1 , i ] 

这样当我们枚举位置 i 时,假设位置 i 的数字为 num ,其前一次出现的位置为 pre,则因为第 i 个位置是 num,所以区间 [ pre + 1 , i ] 这段区间对左端点的贡献集体减一,因为如果还没有第 i 个数字出现的话,那么对于数字 num 来说,区间 [ pre + 1 , i - 1 ] 这段区间对左端点的贡献都为 1 ,所以当加入第 i 个位置的 num 后,需要群体减一

同时,因为新加入了一个 num 的位置,所以原先 [ 1 , pos2 ] 的这段区间扩大到了 [ 1 , pos3 ] 这么大,相当于 [ pos2 + 1 , pos3 ] 这段区间对左端点的贡献集体加一了

因为对于贡献来说,既有群体加一,又有群体减一,所以当一个节点的相对贡献大于等于 0 时,说明当前节点可以选做为左端点,每次处理完后,贪心去寻找相对贡献大于等于 0 的最左端的位置,然后更新答案即可

代码:

  1. #include<iostream>
  2. #include<cstdio>
  3. #include<string>
  4. #include<ctime>
  5. #include<cmath>
  6. #include<cstring>
  7. #include<algorithm>
  8. #include<stack>
  9. #include<climits>
  10. #include<queue>
  11. #include<map>
  12. #include<set>
  13. #include<sstream>
  14. #include<cassert>
  15. using namespace std;
  16. typedef long long LL;
  17. typedef unsigned long long ull;
  18. const int inf=0x3f3f3f3f;
  19. const int N=1e5+100;
  20. vector<int>pos[N];
  21. struct Node
  22. {
  23. int l,r,mmax,lazy;
  24. }tree[N<<2];
  25. void pushup(int k)
  26. {
  27. tree[k].mmax=max(tree[k<<1].mmax,tree[k<<1|1].mmax);
  28. }
  29. void pushdown(int k)
  30. {
  31. if(tree[k].lazy)
  32. {
  33. int lz=tree[k].lazy;
  34. tree[k].lazy=0;
  35. tree[k<<1].lazy+=lz;
  36. tree[k<<1].mmax+=lz;
  37. tree[k<<1|1].lazy+=lz;
  38. tree[k<<1|1].mmax+=lz;
  39. }
  40. }
  41. void build(int k,int l,int r)
  42. {
  43. tree[k].l=l;
  44. tree[k].r=r;
  45. tree[k].mmax=tree[k].lazy=0;
  46. if(l==r)
  47. return;
  48. int mid=l+r>>1;
  49. build(k<<1,l,mid);
  50. build(k<<1|1,mid+1,r);
  51. }
  52. void update(int k,int l,int r,int val)
  53. {
  54. if(tree[k].r<l||tree[k].l>r)
  55. return;
  56. if(tree[k].l>=l&&tree[k].r<=r)
  57. {
  58. tree[k].lazy+=val;
  59. tree[k].mmax+=val;
  60. return;
  61. }
  62. pushdown(k);
  63. update(k<<1,l,r,val);
  64. update(k<<1|1,l,r,val);
  65. pushup(k);
  66. }
  67. int query(int k)
  68. {
  69. if(tree[k].mmax<0)
  70. return inf;
  71. if(tree[k].l==tree[k].r)
  72. return tree[k].l;
  73. pushdown(k);
  74. if(tree[k<<1].mmax>=0)
  75. return query(k<<1);
  76. else
  77. return query(k<<1|1);
  78. }
  79. void init(int c)
  80. {
  81. for(int i=1;i<=c;i++)
  82. {
  83. pos[i].clear();
  84. pos[i].push_back(0);
  85. }
  86. }
  87. int main()
  88. {
  89. #ifndef ONLINE_JUDGE
  90. // freopen("data.in.txt","r",stdin);
  91. // freopen("data.out.txt","w",stdout);
  92. #endif
  93. // ios::sync_with_stdio(false);
  94. int n,c,k;
  95. while(scanf("%d%d%d",&n,&c,&k)!=EOF)
  96. {
  97. init(c);
  98. build(1,1,n);
  99. int ans=0;
  100. for(int i=1;i<=n;i++)
  101. {
  102. int num;
  103. scanf("%d",&num);
  104. update(1,pos[num].back()+1,i,-1);
  105. if(pos[num].size()>k)
  106. update(1,1,pos[num][pos[num].size()-k],-1);
  107. pos[num].push_back(i);
  108. if(pos[num].size()>k)
  109. update(1,1,pos[num][pos[num].size()-k],1);
  110. ans=max(ans,i-query(1)+1);
  111. }
  112. printf("%d\n",ans);
  113. }
  114. return 0;
  115. }

 

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

闽ICP备14008679号