当前位置:   article > 正文

算法笔记————ST表

算法笔记————ST表

运用了倍增思想,从小到大处理

1.【模板】ST 表

  1. // Problem:
  2. // P3865 【模板】ST 表
  3. //
  4. // Contest: Luogu
  5. // URL: https://www.luogu.com.cn/problem/P3865
  6. // Memory Limit: 125 MB
  7. // Time Limit: 800 ms
  8. //
  9. // Powered by CP Editor (https://cpeditor.org)
  10. #include<iostream>
  11. #include<vector>
  12. #include<cmath>
  13. using namespace std;
  14. const int N=1e5+10;
  15. int d[N][20];
  16. #define endl '\n'
  17. int main(){
  18. ios::sync_with_stdio(0),cin.tie(0),cout.tie(0);
  19. int n,m;cin>>n>>m;
  20. for(int i=1;i<=n;++i) cin>>d[i][0];
  21. for(int i=1;i<=19;++i){
  22. for(int j=1;j+(1<<i)-1<=n;++j){
  23. d[j][i]=max(d[j][i-1],d[j+(1<<(i-1))][i-1]);
  24. }
  25. }
  26. while(m--){
  27. int a,b;cin>>a>>b;
  28. int len=log2(b-a+1);
  29. cout<<max(d[a][len],d[b-(1<<len)+1][len])<<endl;
  30. }
  31. return 0;
  32. }

董晓博客的图解释的比较详细,这里引用

第一个图是预处理,时间复杂度nlogn,第二个图是查询,复杂度是O(1)

遇上大数据的离线处理就只能用ST表

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

闽ICP备14008679号