@description@

定义一个序列是好的,当且仅当这个序列中,相等的两个数之间的所有数全部相等。

每次操作可以将某个元素值对应的所有元素修改成另一元素值。

一个序列的困难度定义为,将这个序列修改成好的序列的最少需要修改的位置数。

现在给定初始序列 a1, a2, ..., an 以及 q 次操作,每次操作为 i x,表示将第 i 个元素修改为 x。

计算初始时以及每次操作后序列的困难度。

Input

第一行包含两个整数 n 与 q (1≤n≤200000, 0≤q≤200000),表示序列长度与操作数。

第二行包含 n 个整数 a1, a2, ..., an (1≤ai≤200000),表示初始序列。

接下来 q 行每行两个整数 it, xt (1≤it≤n, 1≤xt≤200000),描述了一次操作。

Output

输出 q + 1 个整数,表示初始序列以及每次操作后的序列的困难度。

Example

input

5 6

1 2 1 2 1

2 1

4 1

5 3

2 3

4 2

2 1

output

2

1

0

0

2

3

0

@solution@

假如如果没有修改(即 easy 版本),应该怎么做?

首先假如某个元素值 k,它最左边出现的位置为 l[k],最右边出现的位置为 r[k],则 l[k]~r[k] 必须要修改为同一元素。

假如最后 a[p]~a[q] 必须为同一元素,则我们保留 a[p]~a[q] 中出现次数最多的元素,修改掉其他的元素是最优的。

我们用数值来描述限制:定义 b[i] 表示 a[i] 与 a[i+1] 被多少次要求为同一元素。则对于每一个 k,我们将 b[ l[k] ... r[k]-1 ] 区间 + 1,即可维护 b 的值。

每次 b 中连续的非零值就形成了最后要求是同一元素的区间。

我们只需要维护出这些非零值形成的连续区间中,区间的长度 - 区间中元素出现次数最大值,这个值之和,即可得到答案。

我们将某一元素 k 出现的次数 cnt[k] 维护在 l[k] 这一位置,记作 c[l[k]]。再定义 d[i] 表示 max{c[i], c[i+1]}。

则只需要维护非零值形成的连续区间中,区间的长度 - 区间中 d 的最大值,该值之和即可。

给 b 序列区间 + 1 可以使用线段树实现。考虑使用线段树怎么实现查询功能。

我们再加入两个哨兵结点 b[0] 与 b[n+1],方便下面的实现。

因为非零值的相关数值不好维护,我们在线段树中维护的是 “删掉当前区间内所有的 b[i] 最小值后,剩下的连续区间的信息”。

为了方便合并,我们统计时并不把包含区间端点的区间统计入当前线段树结点。

因为哨兵节点的存在,我们最终线段树的根一定为我们需要的答案。

在线段树中每个结点先维护 tg, cmn, mx 这几个值,分别表示加法标记,当前区间的 b[i] 最小值,当前区间的 d[i] 最大值。

为了方便合并,再维护 lmx, rmx,表示删掉所有最小值后,左/右端点所在连续区间的最大值(注意可能不存在这样的区间,这时候记作 -1)。

最后,还要维护 ans, cnt,表示删掉所有最小值后, 区间 d 最大值之和与区间长度之和。

这里的“区间长度”,对于完整的区间(即不含区间端点)定义为 b 序列中的区间长度 + 1(即对应的原序列 a 中的区间长度);否则如果包含区间端点,定义为 b 序列中的区间长度本身。

维护过程,只需要讨论左右儿子的 cmn 是否等于当前结点的 cmn,进行分类讨论。

具体细节可以参考代码。

总时间复杂度 O(nlogn)。

@accepted code@

#include<set>
#include<cstdio>
#include<algorithm>
using namespace std;
const int MAXN = 200000;
int arr[MAXN + 5];
struct segtree{
#define lch (x<<1)
#define rch (x<<1|1)
struct node{
int l, r;
int tg, cmn;
int lmx, rmx, mx, ans, cnt;
}t[4*MAXN + 5];
void pushup(int x) {
t[x].mx = max(t[lch].mx, t[rch].mx);
t[x].cmn = min(t[lch].cmn, t[rch].cmn); if( t[x].cmn == t[lch].cmn )
t[x].lmx = t[lch].lmx;
else t[x].lmx = max(t[lch].mx, t[rch].lmx); if( t[x].cmn == t[rch].cmn )
t[x].rmx = t[rch].rmx;
else t[x].rmx = max(t[rch].mx, t[lch].rmx); if( t[x].cmn != t[rch].cmn ) {
t[x].ans = t[lch].ans;
t[x].cnt = t[lch].cnt + t[rch].r - t[rch].l + 1;
}
else if( t[x].cmn != t[lch].cmn ) {
t[x].ans = t[rch].ans;
t[x].cnt = t[rch].cnt + t[lch].r - t[lch].l + 1;
}
else {
t[x].ans = t[lch].ans + t[rch].ans;
t[x].cnt = t[lch].cnt + t[rch].cnt;
if( t[lch].rmx != -1 || t[rch].lmx != -1 )
t[x].ans += max(t[lch].rmx, t[rch].lmx), t[x].cnt++;
} }
void pushdown(int x) {
if( t[x].tg ) {
t[lch].tg += t[x].tg, t[rch].tg += t[x].tg;
t[lch].cmn += t[x].tg, t[rch].cmn += t[x].tg;
t[x].tg = 0;
}
}
void build(int x, int l, int r) {
t[x].l = l, t[x].r = r, t[x].tg = 0, t[x].ans = 0;
if( l == r ) {
t[x].cmn = 0, t[x].lmx = t[x].rmx = -1, t[x].mx = max(arr[l], arr[l + 1]);
return ;
}
int mid = (l + r) >> 1;
build(lch, l, mid), build(rch, mid + 1, r);
pushup(x);
}
void update(int x, int p) {
if( t[x].l > p || t[x].r < p )
return ;
if( t[x].l == t[x].r ) {
t[x].mx = max(arr[p], arr[p + 1]);
return ;
}
pushdown(x);
update(lch, p);
update(rch, p);
pushup(x);
}
void modify(int x, int l, int r, int d) {
if( l <= t[x].l && t[x].r <= r ) {
t[x].tg += d, t[x].cmn += d;
return ;
}
if( l > t[x].r || r < t[x].l )
return ;
pushdown(x);
modify(lch, l, r, d);
modify(rch, l, r, d);
pushup(x);
}
}T;
set<int>st[MAXN + 5];
int a[MAXN + 5], n, q;
void update(int p) {T.update(1, p - 1), T.update(1, p);}
void remove(int x) {
int l = *st[a[x]].begin(), r = *st[a[x]].rbegin();
T.modify(1, l, r - 1, -1), arr[l] = 0, update(l);
st[a[x]].erase(x);
if( !st[a[x]].empty() ) {
int l = *st[a[x]].begin(), r = *st[a[x]].rbegin();
T.modify(1, l, r - 1, 1), arr[l] = st[a[x]].size(), update(l);
}
}
void add(int x) {
if( !st[a[x]].empty() ) {
int l = *st[a[x]].begin(), r = *st[a[x]].rbegin();
T.modify(1, l, r - 1, -1), arr[l] = 0, update(l);
}
st[a[x]].insert(x);
int l = *st[a[x]].begin(), r = *st[a[x]].rbegin();
T.modify(1, l, r - 1, 1), arr[l] = st[a[x]].size(), update(l);
}
int main() {
scanf("%d%d", &n, &q);
for(int i=1;i<=n;i++)
scanf("%d", &a[i]);
T.build(1, 0, n);
for(int i=1;i<=n;i++) add(i);
printf("%d\n", T.t[1].cnt - T.t[1].ans);
for(int i=1;i<=q;i++) {
int it, xt; scanf("%d%d", &it, &xt);
remove(it), a[it] = xt, add(it);
printf("%d\n", T.t[1].cnt - T.t[1].ans);
}
}

@details@

好神奇的线段树。。。

@codeforces - 1209G2@ Into Blocks (hard version)的更多相关文章

  1. Into Blocks (easy version)

    G1 - Into Blocks (easy version) 参考:Codeforces Round #584 - Dasha Code Championship - Elimination Rou ...

  2. Codeforces Round #584 - Dasha Code Championship - Elimination Round (rated, open for everyone, Div. 1 + Div. 2) G1. Into Blocks (easy version)

    题目:https://codeforc.es/contest/1209/problem/G1 题意:给你一个序列,要你进行一些操作后把他变成一个好序列,好序列的定义是,两个相同的数中间的数都要与他相同 ...

  3. Codeforces 838A - Binary Blocks(二维前缀和+容斥)

    838A - Binary Blocks 思路:求一下前缀和,然后就能很快算出每一小正方块中1的个数了,0的个数等于k*k减去1的个数,两个的最小值就是要加进答案的值. 代码: #include< ...

  4. CodeForces 1118F2. Tree Cutting (Hard Version)

    题目简述:给定$n \leq 3 \times 10^5$个节点的树,其中一部分节点被染色,一共有$k$种不同的颜色.求将树划分成 $k$ 个不相交的部分的方案数,使得每个部分中除了未染色的节点以外的 ...

  5. codeforces#1290E2 - Rotate Columns (hard version)(子集dp)

    题目链接: https://codeforces.com/contest/1209/problem/E2 题意: 给出$n$行和$m$列 每次操作循环挪动某列一次 可以执行无数次这样的操作 让每行最大 ...

  6. codeforces#1165 F2. Microtransactions (hard version) (二分+贪心)

    题目链接: https://codeforces.com/contest/1165/problem/F2 题意: 需要买$n$种物品,每种物品$k_i$个,每个物品需要两个硬币 每天获得一个硬币 有$ ...

  7. Codeforces 1304F2 Animal Observation (hard version) 代码(dp滑动窗口线段树区间更新优化)

    https://codeforces.com/contest/1304/problem/F2 #include<bits/stdc++.h> using namespace std; ; ...

  8. Codeforces 1326F2 - Wise Men (Hard Version)(FWT+整数划分)

    Codeforces 题目传送门 & 洛谷题目传送门 qwq 这题大约是二十来天前 AC 的罢,为何拖到此时才完成这篇题解,由此可见我是个名副其实的大鸽子( 这是我上 M 的那场我没切掉的 F ...

  9. Codeforces 1446D2 - Frequency Problem (Hard Version)(根分)

    Codeforces 题面传送门 & 洛谷题面传送门 人菜结论题做不动/kk 首先考虑此题一个非常关键的结论:我们设整个数列的众数为 \(G\),那么在最优子段中,\(G\) 一定是该子段的众 ...

随机推荐

  1. UnhandledPromiseRejectionWarning: SequelizeConnectionError: Client does not support authentication protocol requested by server; consider upgrading MySQL client

    UnhandledPromiseRejectionWarning: SequelizeConnectionError: Client does not support authentication p ...

  2. SpringBoot随机数

    # 随机字符串 com.didispace.blog.value=${random.value} # 随机int com.didispace.blog.number=${random.int} # 随 ...

  3. 8天入门wpf—— 第四天 模板

    今天说下wpf中的模板,前面一篇中我们讲到了style,但是style所能做的仅仅是在现有控件的基础上进行修修补补,但是如果我们想彻底颠覆控件样式,那么我们就必须使用这一篇所说的模板. 老外写书都喜欢 ...

  4. 超高频率问题之信息: Illegal access: this web application instance has been stopped already. Could not load . The eventual following stack trace is caused by an error thrown for debugging purposes as well as

    出现频率非常高,目前还不确定具体是什么原因导致

  5. 2019.9.21 csp-s模拟测试49 反思总结

    没赶上昨天的考试,不过我这种人考不考都没有多少提升吧. 挺服气的一场考试,有生以来参加的最让人想笑的考试. T1:养花 取模,区间询问最大值,有点套路化的预处理答案…难点也在预处理上.容易想到分块然后 ...

  6. centos6.5 zabbix2.2 亲测安装

    因为需要做测试,调试.需要安装zabbix.  然后自己新弄了一个 centos6.5 minimal版本,从头来了一遍. 1.先安装LAMP的环境还有一些基本环境. yum -y install g ...

  7. 洛谷P2426 删数 [2017年4月计划 动态规划12]

    P2426 删数 题目描述 有N个不同的正整数数x1, x2, ... xN 排成一排,我们可以从左边或右边去掉连续的i(1≤i≤n)个数(只能从两边删除数),剩下N-i个数,再把剩下的数按以上操作处 ...

  8. Leetcode77. Combinations组合

    给定两个整数 n 和 k,返回 1 ... n 中所有可能的 k 个数的组合. 示例: 输入: n = 4, k = 2 输出: [ [2,4], [3,4], [2,3], [1,2], [1,3] ...

  9. Vue.之. 动态设置按钮Disabled

    Vue.之. 动态设置按钮Disabled 按钮代码如下: 添加了一个 属性      :disabled="isAble"  ,控制:更新按钮.重置按钮 <el-form- ...

  10. pug的安装与使用

    说明 Pug原名不叫Pug,是大名鼎鼎的jade,后来由于商标的原因,改为Pug,哈巴狗.其实只是换个名字,语法都与jade一样.丑话说在前面,Pug有它本身的缺点--可移植性差,调试困难,性能并不出 ...