set+线段树 Codeforces Round #305 (Div. 2) D. Mike and Feet

题目传送门

  1 /*
  2     题意:对于长度为x的子序列,每个序列存放为最小值,输出长度为x的子序列的最大值
  3     set+线段树:线段树每个结点存放长度为rt的最大值,更新:先升序排序,逐个添加到set中
  4                 查找左右相邻的位置,更新长度为r - l - 1的最大值,感觉线段树结构体封装不错!
  5     详细解释:http://blog.csdn.net/u010660276/article/details/46045777
  6     其实还有其他解法,先掌握这种:)
  7 */
  8 #include <cstdio>
  9 #include <algorithm>
 10 #include <iostream>
 11 #include <iostream>
 12 #include <cstring>
 13 #include <set>
 14 using namespace std;
 15
 16 typedef long long ll;
 17 #define lson l, mid, rt << 1
 18 #define rson mid + 1, r, rt << 1 | 1
 19
 20 const int MAXN = 2e5 + 10;
 21 const int INF = 0x3f3f3f3f;
 22
 23 struct A
 24 {
 25     int v, id;
 26     bool operator < (const A &a) const
 27     {
 28         return v < a.v;
 29     }
 30 }a[MAXN];
 31 struct SegmentTree
 32 {
 33     int add[MAXN << 2];
 34     int mx[MAXN << 2];
 35
 36     void push_down(int rt)
 37     {
 38         if (add[rt])
 39         {
 40             add[rt<<1] = add[rt<<1|1] = add[rt];
 41             mx[rt<<1] = mx[rt<<1|1] = add[rt];
 42             add[rt] = 0;
 43         }
 44     }
 45
 46     void build(int l, int r, int rt)
 47     {
 48         add[rt] = mx[rt] = 0;
 49         if (l == r)    return ;
 50         int mid = (l + r) >> 1;
 51         build (lson);    build (rson);
 52     }
 53
 54     void updata(int ql, int qr, int c, int l, int r, int rt)
 55     {
 56         if (ql <= l && r <= qr)    {mx[rt] = c; add[rt] = c;    return ;}
 57         push_down (rt);
 58         int mid = (l + r) >> 1;
 59         if (ql <= mid)    updata (ql, qr, c, lson);
 60         if (qr > mid)    updata (ql, qr, c, rson);
 61     }
 62
 63     int query(int x, int l, int r, int rt)
 64     {
 65         if (l == r)    return mx[rt];
 66         push_down (rt);
 67         int mid = (l + r) >> 1;
 68         if (x <= mid)    return query (x, lson);
 69         return query (x, rson);
 70     }
 71 }tree;
 72
 73 int ans[MAXN];
 74
 75 int main(void)        //Codeforces Round #305 (Div. 2) D. Mike and Feet
 76 {
 77     int n;
 78     while (scanf ("%d", &n) == 1)
 79     {
 80         for (int i=1; i<=n; ++i)
 81         {
 82             scanf ("%d", &a[i].v);    a[i].id = i;
 83         }
 84         sort (a+1, a+1+n);
 85
 86         tree.build (1, n, 1);
 87         set<int> S;    S.insert (0);    S.insert (n + 1);
 88         set<int>::iterator it;
 89         for (int i=1; i<=n; ++i)
 90         {
 91             int l, r;
 92             it = S.lower_bound (a[i].id);
 93             r = *it; it--; l = *it;
 94             if (r - l - 1 >= 1)    tree.updata (1, r-l-1, a[i].v, 1, n, 1);
 95             S.insert (a[i].id);
 96         }
 97
 98         for (int i=1; i<=n; ++i)
 99             ans[i] = tree.query (i, 1, n, 1);
100         for (int i=1; i<=n; ++i)
101             printf ("%d%c", ans[i], (i==n) ? ‘\n‘ : ‘ ‘);
102     }
103
104     return 0;
105 }
106
107 /*
108 10
109 1 2 3 4 5 4 3 2 1 6
110 */
时间: 2024-08-06 03:43:38

set+线段树 Codeforces Round #305 (Div. 2) D. Mike and Feet的相关文章

Codeforces Round #305 (Div. 1) B. Mike and Feet

Mike is the president of country What-The-Fatherland. There are n bears living in this country besides Mike. All of them are standing in a line and they are numbered from 1 to n from left to right. i-th bear is exactly ai feet high. A group of bears

Codeforces Round #305 (Div. 1) B. Mike and Feet(并查集)

题目链接:点击打开链接 思路:我们把元素从大到小排序, 从大到小依次合并区间, 对于第i个数, 如果他相邻左边的数比他大就合并, 相邻右边也一样.这样, 我们就求出了第i个数为最小值的最大区间. 更新答案即可. 细节参见代码: #include <cstdio> #include <cstring> #include <algorithm> #include <iostream> #include <string> #include <ve

暴力 Codeforces Round #305 (Div. 2) B. Mike and Fun

题目传送门 1 /* 2 暴力:每次更新该行的num[],然后暴力找出最优解就可以了:) 3 */ 4 #include <cstdio> 5 #include <cstring> 6 #include <iostream> 7 #include <algorithm> 8 #include <string> 9 using namespace std; 10 11 const int MAXN = 5e2 + 10; 12 const int

数论/暴力 Codeforces Round #305 (Div. 2) C. Mike and Frog

题目传送门 1 /* 2 数论/暴力:找出第一次到a1,a2的次数,再找到完整周期p1,p2,然后以2*m为范围 3 t1,t2为各自起点开始“赛跑”,谁落后谁加一个周期,等到t1 == t2结束 4 详细解释:http://blog.csdn.net/u014357885/article/details/46044287 5 */ 6 #include <cstdio> 7 #include <algorithm> 8 #include <cstring> 9 #in

字符串处理 Codeforces Round #305 (Div. 2) A. Mike and Fax

题目传送门 1 /* 2 字符串处理:回文串是串联的,一个一个判断 3 */ 4 #include <cstdio> 5 #include <cstring> 6 #include <iostream> 7 #include <algorithm> 8 #include <string> 9 using namespace std; 10 11 const int MAXN = 1e3 + 10; 12 const int INF = 0x3f3

线段树 Codeforces Round #197 (Div. 2) D. Xenia and Bit Operations

题目传送门 1 /* 2 线段树的单点更新:有一个交叉更新,若rank=1,or:rank=0,xor 3 详细解释:http://www.xuebuyuan.com/1154895.html 4 */ 5 #include <cstdio> 6 #include <iostream> 7 #include <algorithm> 8 #include <cstring> 9 #include <string> 10 #include <c

Codeforces Round #305 (Div. 2) E. Mike and Foam 容斥原理

在一个集合中,找和x互素的数有多少? 用容斥定理,先把每个数质因数分解(每个数至多有6个质因子),奇减偶加,就统计到和x互素的数了. 代码: #include<iostream> #include<vector> #include<algorithm> #include<cstdio> #include<cstring> using namespace std; const int N = 5*100000+10; const int maxn

Codeforces Round #305 (Div. 2) C. Mike and Frog +B. Mike and Fun

Mike has a frog and a flower. His frog is named Xaniar and his flower is named Abol. Initially(at time 0), height of Xaniar is h1 and height of Abol is h2. Each second, Mike waters Abol and Xaniar. So, if height of Xaniar is h1 and height of Abol is 

Codeforces Round #305 (Div. 1)C. Mike and Foam(素数+容斥)

题目链接:点这里!!! 题意: 输入n(n<=2e5),q(q<=2e5).紧接着输入n个数a1~an(ai<=5e5).给定一个空集合. 针对每个q,输入x,如果a[x]在不在集合里面,将a[x]插入进去,并且求当前该集合中有多少对互质的数: 如果a[x]在集合里面,将a[x]删除,并且求当前该集合有多少对互质的数. 题解: 1. 将所有数的素因子求出来.(最多6个) 2.如果将a[x]插入进去,我们检查由a[x]的素因子能组成的数有哪些,全部+1. 比如a[x]=12,我们将2.3.