浅谈分块:https://www.cnblogs.com/AKMer/p/10369816.html

题目传送门:https://lydsy.com/JudgeOnline/problem.php?id=2724

对于每次询问的答案,要么是中间整块的众数,要么是在两侧不完整的块出现过的数。

根据这个性质,我们可以\(O(n\sqrt{n})\)求出每个块的众数和\(sum[i][j]\),表示从第一块到第\(i\)块内\(j\)出现了多少次。

然后再用区间\(dp\)在\(O(n\sqrt{n})\)的复杂度内求出\(mx[i][j]\),表示第\(i\)整块到第\(j\)整块的众数是多少。

对于每次询问,出现在两侧不完整的块的数,我们可以暴力扫描两侧把它们出现的次数丢到一个桶里,在加上在整块里出现的次数。

然后直接找次数最多的那个数就行了。

注意相同比大小要比原大小而不是离散化之后的大小。

时间复杂度:\(O(n\sqrt{n}+m\sqrt{n})\)

空间复杂度:\(O(n\sqrt{n})\)

代码如下:

#include <cmath>
#include <cstdio>
#include <cstring>
#include <algorithm>
using namespace std; const int maxn=4e4+5; int n,m,cnt,block,top,lstans;
int v[maxn],tmp[maxn],bel[maxn],tot[maxn];
int L[205],R[205],stk[405],mx[205][205],sum[205][maxn]; int read() {
int x=0,f=1;char ch=getchar();
for(;ch<'0'||ch>'9';ch=getchar())if(ch=='-')f=-1;
for(;ch>='0'&&ch<='9';ch=getchar())x=x*10+ch-'0';
return x*f;
} int query(int l,int r,int v) {return sum[r][v]-sum[l-1][v];} int main() {
n=read(),m=read(),block=sqrt(n);
for(int i=1;i<=n;i++) {
tmp[i]=v[i]=read();
bel[i]=(i-1)/block+1;
if(bel[i]!=bel[i-1])
R[bel[i-1]]=i-1,L[bel[i]]=i;
}
R[bel[n]]=n,sort(tmp+1,tmp+n+1);
cnt=unique(tmp+1,tmp+n+1)-tmp-1;
for(int i=1;i<=n;i++)
v[i]=lower_bound(tmp+1,tmp+cnt+1,v[i])-tmp;
for(int i=1;i<=bel[n];i++) {
memcpy(sum[i],sum[i-1],sizeof(sum[i]));
int num2=0;
for(int j=L[i];j<=R[i];j++)
sum[i][v[j]]++;
for(int j=L[i];j<=R[i];j++) {
int num1=query(i,i,v[j]);
if((num1>num2)||(num1==num2&&tmp[v[j]]<tmp[mx[i][i]]))
mx[i][i]=v[j],num2=num1;
}
}
for(int len=2;len<=bel[n];len++)
for(int i=1;i+len-1<=bel[n];i++) {
int j=i+len-1,res=mx[i][j-1],num2=query(i,j,res);
for(int k=L[j];k<=R[j];k++) {
int num1=query(i,j,v[k]);
if((num1>num2)||(num1==num2&&tmp[v[k]]<tmp[res]))
res=v[k],num2=num1;
}
mx[i][j]=res;
}
while(m--) {
int l=read(),r=read(),res=0,num2=0;
l=(l+lstans-1)%n+1,r=(r+lstans-1)%n+1;
if(r<l)swap(l,r);
if(bel[l]==bel[r]) {
for(int i=l;i<=r;i++)
if((++tot[v[i]])==1)stk[++top]=v[i];
}
else {
for(int i=l;i<=R[bel[l]];i++)
if((++tot[v[i]])==1) {
stk[++top]=v[i];
tot[v[i]]+=query(bel[l]+1,bel[r]-1,v[i]);
}
for(int i=L[bel[r]];i<=r;i++)
if((++tot[v[i]])==1) {
stk[++top]=v[i];
tot[v[i]]+=query(bel[l]+1,bel[r]-1,v[i]);
}
int tmp=mx[bel[l]+1][bel[r]-1];
if(!tot[tmp]) {
stk[++top]=tmp;
tot[tmp]=query(bel[l]+1,bel[r]-1,tmp);
}
}
for(int i=1;i<=top;i++) {
int num1=tot[stk[i]];
if((num1>num2)||(num1==num2&&tmp[stk[i]]<tmp[res]))
res=stk[i],num2=num1;
}
while(top)tot[stk[top--]]=0;
lstans=tmp[res];
printf("%d\n",lstans);
}
return 0;
}

BZOJ2724:[Violet 6]蒲公英的更多相关文章

  1. [BZOJ2724][Violet 6]蒲公英

    [BZOJ2724][Violet 6]蒲公英 试题描述 输入 修正一下 l = (l_0 + x - 1) mod n + 1, r = (r_0 + x - 1) mod n + 1 输出 输入示 ...

  2. BZOJ2724 [Violet 6]蒲公英 分块

    原文链接https://www.cnblogs.com/zhouzhendong/p/BZOJ2724.html 题目传送门 - BZOJ2724 题意 求区间最小众数,强制在线. $n$ 个数,$m ...

  3. bzoj2724: [Violet 6]蒲公英(离散化+分块)

    我好弱啊..这题调了2天QwQ 题目大意:给定一个长度为n(n<=40000)的序列,m(m<=50000)次询问l~r之间出现次数最多的数.(区间众数) 这题如果用主席树就可以不用处理一 ...

  4. bzoj2724: [Violet 6]蒲公英 分块 区间众数 论algorithm与vector的正确打开方式

    这个,要处理各个数的话得先离散,我用的桶. 我们先把每个块里的和每个块区间的众数找出来,那么在查询的时候,可能成为[l,r]区间的众数的数只有中间区间的众数和两边的数. 证明:若不是这里的数连区间的众 ...

  5. 【分块】bzoj2724 [Violet 6]蒲公英

    分块,离散化,预处理出: ①前i块中x出现的次数(差分): ②第i块到第j块中的众数是谁,出现了多少次. 询问的时候,对于整块的部分直接获得答案:对于零散的部分,暴力统计每个数出现的次数,加上差分的结 ...

  6. bzoj2724: [Violet 6]蒲公英(分块)

    传送门 md调了一个晚上最后发现竟然是空间开小了……明明算出来够的…… 讲真其实我以前不太瞧得起分块,觉得这种基于暴力的数据结构一点美感都没有.然而今天做了这道分块的题才发现分块的暴力之美(如果我空间 ...

  7. 【BZOJ2724】[Violet 6]蒲公英 分块+二分

    [BZOJ2724][Violet 6]蒲公英 Description Input 修正一下 l = (l_0 + x - 1) mod n + 1, r = (r_0 + x - 1) mod n ...

  8. BZOJ 2724: [Violet 6]蒲公英

    2724: [Violet 6]蒲公英 Time Limit: 40 Sec  Memory Limit: 512 MBSubmit: 1633  Solved: 563[Submit][Status ...

  9. BZOJ 2724: [Violet 6]蒲公英( 分块 )

    虽然AC了但是时间惨不忍睹...不科学....怎么会那么慢呢... 无修改的区间众数..分块, 预处理出Mode[i][j]表示第i块到第j块的众数, sum[i][j]表示前i块j出现次数(前缀和, ...

  10. BZOJ_2724_[Violet 6]蒲公英_分块

    BZOJ_2724_[Violet 6]蒲公英_分块 Description Input 修正一下 l = (l_0 + x - 1) mod n + 1, r = (r_0 + x - 1) mod ...

随机推荐

  1. CSS3手风琴下拉菜单

    在线演示 本地下载

  2. INDEL的重新比对和碱基质量分数的重新校准

    1.为什么要做这两步(why): indel的重新比对:这是由于比对软件的自身限制,其可能将包括indel的read解释为snp的read,这就导致calling的错误和后面的碱基质量分数的重新校准. ...

  3. HISAT2的运用

    功能: 用于有参考基因组存在的比对工具(适用于whole-genome, transcriptome, and exome sequencing data) 用法: hisat2-build [opt ...

  4. 发现一个小坑的地方,unity的协程,想要停止,必须以字符串启动

    今天想要停止一个协成,发现调用 StopCoroutine(ShowDebug()); 竟然不管用,后来看了文档才知道,原来想要停止协成,必须用字符启动协程 StartCoroutine(" ...

  5. Pandas的 loc iloc ix 区别

    先看代码: In [46]: import pandas as pd In [47]: data = [[1,2,3],[4,5,6]] In [48]: index = [0,1] In [49]: ...

  6. 吴恩达深度学习笔记(八) —— ResNets残差网络

    (很好的博客:残差网络ResNet笔记) 主要内容: 一.深层神经网络的优点和缺陷 二.残差网络的引入 三.残差网络的可行性 四.identity block 和 convolutional bloc ...

  7. SEM竞价数据基本分析方法

    今天我们从账户数据表现来看一看怎样通过数据分析,判断账户出现的问题及解决思路.也欢迎大家提出意见,共同讨论进步. 首先我们从关键词报告来分析数据: 以上图数据为例.(设定该行业CPC均价为8) 先说下 ...

  8. Android 报错Android - Performing stop of activity that is not resumed

    [原文] FROM STACKOVERFLOW: Just giving my 50 cents on the issue. Catching the exception is indeed one ...

  9. tp后台注册登录配置项

    1.在application目录下Common/Conf/config.php中 2-17行,首先判断在data目录下有没有特意设置的db.php, config.php,route.php,如果有就 ...

  10. JMeter接口测试报错,反馈和postman不一样(一)

    今天发现一个小的细节 同样一条请求,postman里面直接写就好 JMeter里面需要把编码加上 例如,同样一句话 postman里面这么写,返回值为 但是在JMeter里面这么写 显示结果为 在这里 ...