洛谷

Codeforces


看到题解那么少就来发一篇吧……


思路

看完题目一脸懵逼,感觉无从下手。

莫名其妙地想到笛卡尔树,但笛卡尔树好像并没有太大作用。

考虑把笛卡尔树改一下:每个点的父亲设为它的右边第一个大于它的位置。

这时突然发现一个很好的性质:搞答案时每次从右边加入一个点\(x\)时,以\(x\)的子树中的一个点为起点的长度全都加一。

那么按dfs序建线段树维护区间和、区间加、单点修改为-INF(从左边删点)即可。


代码

  1. #include<bits/stdc++.h>
  2. clock_t t=clock();
  3. namespace my_std{
  4. using namespace std;
  5. #define pii pair<int,int>
  6. #define fir first
  7. #define sec second
  8. #define MP make_pair
  9. #define rep(i,x,y) for (int i=(x);i<=(y);i++)
  10. #define drep(i,x,y) for (int i=(x);i>=(y);i--)
  11. #define go(x) for (int i=head[x];i;i=edge[i].nxt)
  12. #define templ template<typename T>
  13. #define sz 1001010
  14. typedef long long ll;
  15. typedef double db;
  16. mt19937 rng(chrono::steady_clock::now().time_since_epoch().count());
  17. templ inline T rnd(T l,T r) {return uniform_int_distribution<T>(l,r)(rng);}
  18. templ inline bool chkmax(T &x,T y){return x<y?x=y,1:0;}
  19. templ inline bool chkmin(T &x,T y){return x>y?x=y,1:0;}
  20. templ inline void read(T& t)
  21. {
  22. t=0;char f=0,ch=getchar();double d=0.1;
  23. while(ch>'9'||ch<'0') f|=(ch=='-'),ch=getchar();
  24. while(ch<='9'&&ch>='0') t=t*10+ch-48,ch=getchar();
  25. if(ch=='.'){ch=getchar();while(ch<='9'&&ch>='0') t+=d*(ch^48),d*=0.1,ch=getchar();}
  26. t=(f?-t:t);
  27. }
  28. template<typename T,typename... Args>inline void read(T& t,Args&... args){read(t); read(args...);}
  29. char __sr[1<<21],__z[20];int __C=-1,__Z=0;
  30. inline void __Ot(){fwrite(__sr,1,__C+1,stdout),__C=-1;}
  31. inline void print(register int x)
  32. {
  33. if (__C>1<<20) __Ot(); if (x<0) __sr[++__C]='-',x=-x;
  34. while (__z[++__Z]=x%10+48,x/=10);
  35. while (__sr[++__C]=__z[__Z],--__Z);__sr[++__C]='\n';
  36. }
  37. void file()
  38. {
  39. #ifndef ONLINE_JUDGE
  40. freopen("a.in","r",stdin);
  41. #endif
  42. }
  43. inline void chktime()
  44. {
  45. #ifndef ONLINE_JUDGE
  46. cout<<(clock()-t)/1000.0<<'\n';
  47. #endif
  48. }
  49. #ifdef mod
  50. ll ksm(ll x,int y){ll ret=1;for (;y;y>>=1,x=x*x%mod) if (y&1) ret=ret*x%mod;return ret;}
  51. ll inv(ll x){return ksm(x,mod-2);}
  52. #else
  53. ll ksm(ll x,int y){ll ret=1;for (;y;y>>=1,x=x*x) if (y&1) ret=ret*x;return ret;}
  54. #endif
  55. // inline ll mul(ll a,ll b){ll d=(ll)(a*(double)b/mod+0.5);ll ret=a*b-d*mod;if (ret<0) ret+=mod;return ret;}
  56. }
  57. using namespace my_std;
  58. int n,m;
  59. int a[sz];
  60. struct hh{int t,nxt;}edge[sz<<1];
  61. int head[sz],ecnt;
  62. void make_edge(int f,int t)
  63. {
  64. edge[++ecnt]=(hh){t,head[f]};
  65. head[f]=ecnt;
  66. edge[++ecnt]=(hh){f,head[t]};
  67. head[t]=ecnt;
  68. }
  69. int dfn[sz],low[sz],cnt;
  70. void dfs(int x,int fa)
  71. {
  72. dfn[x]=++cnt;
  73. go(x) if (edge[i].t!=fa) dfs(edge[i].t,x);
  74. low[x]=cnt;
  75. }
  76. void build()
  77. {
  78. stack<int>s;
  79. rep(i,1,n)
  80. {
  81. while (!s.empty()&&a[s.top()]<a[i]) make_edge(s.top(),i),s.pop();
  82. s.push(i);
  83. }
  84. while (!s.empty()) make_edge(s.top(),n+1),s.pop();
  85. }
  86. int mx[sz<<2];
  87. int tag[sz<<2];
  88. #define ls k<<1
  89. #define rs k<<1|1
  90. #define lson ls,l,mid
  91. #define rson rs,mid+1,r
  92. void Add(int k,int w){mx[k]+=w;tag[k]+=w;}
  93. void pushdown(int k){Add(ls,tag[k]);Add(rs,tag[k]);tag[k]=0;}
  94. void pushup(int k){mx[k]=max(mx[ls],mx[rs]);}
  95. void add(int k,int l,int r,int x,int y)
  96. {
  97. if (x<=l&&r<=y) return Add(k,1);
  98. int mid=(l+r)>>1;
  99. pushdown(k);
  100. if (x<=mid) add(lson,x,y);
  101. if (y>mid) add(rson,x,y);
  102. pushup(k);
  103. }
  104. void modify(int k,int l,int r,int x)
  105. {
  106. if (l==r) return void(mx[k]=-1e9);
  107. int mid=(l+r)>>1;
  108. pushdown(k);
  109. if (x<=mid) modify(lson,x);
  110. else modify(rson,x);
  111. pushup(k);
  112. }
  113. int main()
  114. {
  115. file();
  116. read(n,m);
  117. rep(i,1,n) read(a[i]);
  118. build();
  119. dfs(n+1,0);
  120. rep(i,1,n) --dfn[i],--low[i];
  121. rep(i,1,n)
  122. {
  123. add(1,1,n,dfn[i],low[i]);
  124. if (i>m) modify(1,1,n,dfn[i-m]);
  125. if (i>=m) printf("%d ",mx[1]);
  126. }
  127. return 0;
  128. }

Codeforces 1132G Greedy Subsequences [线段树]的更多相关文章

  1. [Codeforces1132G]Greedy Subsequences——线段树+单调栈

    题目链接: Codeforces1132G 题目大意:给定一个序列$a$,定义它的最长贪心严格上升子序列为$b$满足若$a_{i}$在$b$中则$a_{i}$之后第一个比它大的也在$b$中.给出一个数 ...

  2. Codeforces 1132G(dfs序+线段树)

    题面 传送门 分析 对于每一个数a[i],找到它后面第一个大于它的数a[p],由p向i连边,最终我们就会得到一个森林,且p是i的父亲.为了方便操作,我们再增加一个虚拟节点n+1,把森林变成树. 由于序 ...

  3. cf1132G. Greedy Subsequences(线段树)

    题意 题目链接 Sol 昨天没想到真是有点可惜了. 我们考虑每个点作为最大值的贡献,首先预处理出每个位置\(i\)左边第一个比他大的数\(l\),显然\([l + 1, i]\)内的数的后继要么是\( ...

  4. Buses and People CodeForces 160E 三维偏序+线段树

    Buses and People CodeForces 160E 三维偏序+线段树 题意 给定 N 个三元组 (a,b,c),现有 M 个询问,每个询问给定一个三元组 (a',b',c'),求满足 a ...

  5. CodeForces 877E DFS序+线段树

    CodeForces 877E DFS序+线段树 题意 就是树上有n个点,然后每个点都有一盏灯,给出初始的状态,1表示亮,0表示不亮,然后有两种操作,第一种是get x,表示你需要输出x的子树和x本身 ...

  6. [Codeforces 1197E]Culture Code(线段树优化建图+DAG上最短路)

    [Codeforces 1197E]Culture Code(线段树优化建图+DAG上最短路) 题面 有n个空心物品,每个物品有外部体积\(out_i\)和内部体积\(in_i\),如果\(in_i& ...

  7. [Codeforces 1199D]Welfare State(线段树)

    [Codeforces 1199D]Welfare State(线段树) 题面 给出一个长度为n的序列,有q次操作,操作有2种 1.单点修改,把\(a_x\)修改成y 2.区间修改,把序列中值< ...

  8. [Codeforces 316E3]Summer Homework(线段树+斐波那契数列)

    [Codeforces 316E3]Summer Homework(线段树+斐波那契数列) 顺便安利一下这个博客,给了我很大启发(https://gaisaiyuno.github.io/) 题面 有 ...

  9. Codeforces 1132G(关系转化树+dfn+线段树)

    要点 显然要滑动修改维护. 像通常的数列next关系一样建边(单调栈预处理),因为贪心所以是树,然后发现增删只会影响区间内的子(or父,看你连边方向行事)节点,于是使用dfs序建线段树. 为了正确地修 ...

随机推荐

  1. vs不自动退出控制台程序的办法

    1.在主函数rerurn 前加上getchar();即可. 2.ctrl+F5;

  2. A - 签到题

    给定一个长度为N的数组A=[A1, A2, ... AN],已知其中每个元素Ai的值都只可能是1, 2或者3. 请求出有多少下标三元组(i, j, k)满足1 ≤ i < j < k ≤ ...

  3. Java SE之XML<二>XML DOM与SAX解析

    [文档整理系列] Java SE之XML<二>XML DOM与SAX解析 XML编程:CRUD(Create Read Update Delete) XML解析的两种常见方式: DOM(D ...

  4. 第19月第17天 uitextview 文本垂直居中 uiimage中间不拉伸

    1. open class VericalCenteringScrollView: UIScrollView { override open var contentOffset: CGPoint { ...

  5. python发送网络请求

    1.使用urllib模块(使用不方便,建议使用第二种) get请求: res = urlopen(url) from urllib.request import urlopen url = 'http ...

  6. linux 扩展根分区

    参考链接:  http://blog.51cto.com/lubcdc/1763133

  7. 【blog】Hibernate5如何设置SQLite的方言(待更新...)

    参考链接 Hibernate3.Hibernate4.Hibernate5 hibernate5连接sqlite (目前参考的是这个方法)

  8. 《SSH网上商城》-视频目录--代码可以跑起来

    本课程是2015年2月份的,就是14年底的. 课程第一天的代码-添加 jsp-api.jar   servlet-api.jar就可以跑起来,环境 JDK1.7 和tomcat8, SSH网上商城\S ...

  9. 新eclipse 打开就版本的工作空间提示:

    点击OK后,完美呈现   (因为本人的旧版本已经被我玩坏了,有些菜单已经打不开)

  10. C中的malloc/free与C++中的new/delete的用法与区别

    1.先介绍malloc/free的用法: 原型函数: void *malloc(long NumBytes); 该函数分配了NumBytes个字节的内容,分配的空间是堆空间 malloc()根据用户所 ...