Find the median(线段树+离散化)(2019牛客暑期多校训练营(第七场))
题目出处:Find the median
示例:
输入:
5
3 1 4 1 5 9
2 7 1 8 2 9
输出:3 4 5 4 5
说明:L = [3, 2 ,4, 1, 7],R = [4, 8, 8, 3, 9]
题意:每次插入[l[i],r[i]][l[i],r[i]],询问中位数
题解:线段树模版题+离散化(不懂或忘了这些的先补充下知识)。线段树的区间操作。但是由于范围太大,需要离散化,所以就出现了连续性的问题。所以只能用线段树维护 左闭右开 即:[w[l],w[r])。
code:
- #include<bits/stdc++.h>
- #define LL long long
- using namespace std;
- const int maxx=8e6+;
- LL summ[maxx],w[maxx],lz[maxx];
- void pushdown(int l,int r,int root)
- {
- if(lz[root]){
- int mid=(l+r)>>;
- summ[root<<]+=(w[mid]-w[l])*lz[root];
- summ[root<<|]+=(w[r]-w[mid])*lz[root];
- lz[root<<]+=lz[root],lz[root<<|]+=lz[root];
- lz[root]=;
- }
- }
- void update(int l,int r,int root,int L,int R)
- {
- if(L<=l&&r-<=R){//更新区间[w[l],w[r]]
- lz[root]++;//将一大段加入每个点加入的数储存,未用的不下放
- summ[root]+=w[r]-w[l];
- return ;
- }
- pushdown(l,r,root);//下放lz标记储存的数
- int mid=(l+r)>>;
- if(L<mid)update(l,mid,root<<,L,R);
- if(R>=mid)update(mid,r,root<<|,L,R);
- summ[root]=summ[root<<]+summ[root<<|];
- }
- LL query(int l,int r,int root,LL k)
- {
- if(l+==r){//当l+1=r时,表示当前最小的一段区间,该区间的数的个数一定相等
- LL lo=summ[root]/(w[r]-w[l]);
- return w[l]+(k-)/lo;
- }
- pushdown(l,r,root);//下发lz标记储存的数
- int mid=(l+r)>>;
- if(summ[root<<]>=k)return query(l,mid,root<<,k);
- else return query(mid,r,root<<|,k-summ[root<<]);
- }
- LL n,tot=,A1,A2,B1,B2,C1,C2,M1,M2;
- LL x[maxx],y[maxx],_l[maxx],_r[maxx];
- int main()
- {
- scanf("%lld",&n);
- scanf("%lld%lld%lld%lld%lld%lld",&x[],&x[],&A1,&B1,&C1,&M1);
- scanf("%lld%lld%lld%lld%lld%lld",&y[],&y[],&A2,&B2,&C2,&M2);
- for(int i=;i<=n;i++)//按题意算出xi、yi的值
- x[i]=(A1*x[i-]+B1*x[i-]+C1)%M1,y[i]=(A2*y[i-]+B2*y[i-]+C2)%M2;
- for(int i=;i<=n;i++){//按题意处理左右区域和储存所有点以便后面离散化
- _l[i]=min(x[i],y[i])+,_r[i]=max(x[i],y[i])+;//为了得到一个较好的操作区间
- w[tot++]=_l[i],w[tot++]=_r[i];
- }
- sort(w+,w+tot);//排序
- tot=unique(w+,w+tot)-w;//离散化去除重复点
- LL sum=;//统计第几次加入点后点的总数
- for(int i=;i<=n;i++){
- int l=lower_bound(w+,w+tot,_l[i])-w;//
- int r=lower_bound(w+,w+tot,_r[i])-w;
- update(,tot,,l,r-);//在线段树中加入一段新的数据
- sum+=w[r]-w[l];
- printf("%lld\n",query(,tot,,(sum+)/));//查询第i段数据加入后的中位数
- }
- return ;
- }
Find the median(线段树+离散化)(2019牛客暑期多校训练营(第七场))的更多相关文章
- 2019牛客暑期多校训练营(第一场)I dp+线段树
题意 给出n个点,每个点有a,b两个属性,让你从左下角到右上角划一条线,线的左边每个点的贡献是\(a_i\),线的右边每个点的贡献是\(b_i\),使得两部分的总和最大. 分析 找一条折线将点分割开, ...
- DP+线段树维护矩阵(2019牛客暑期多校训练营(第二场))--MAZE
题意:https://ac.nowcoder.com/acm/contest/882/E 给你01矩阵,有两种操作:1是把一个位置0变1.1变0,2是问你从第一行i开始,到最后一行j有几种走法.你只能 ...
- Points Division(线段树+DP)2019牛客暑期多校训练营(第一场)
题意:https://ac.nowcoder.com/acm/contest/881/I 给你n个平面上的点,每个点有a.b两个权值,现在让你划分成两个区域(要求所有A集合里的点不能在任何B集合里的点 ...
- 2019牛客暑期多校训练营(第二场)E 线段树维护dp转移矩阵
题意 给一个\(n\times m\)的01矩阵,1代表有墙,否则没有,每一步可以从\(b[i][j]\)走到\(b[i+1][j]\),\(b[i][j-1]\),\(b[i][j+1]\),有两种 ...
- 2019牛客暑期多校训练营(第九场)H Cutting Bamboos(主席树+二分)
题意:n个竹子,有高度,q次询问,询问之间是独立的,每次查询输入l,r,x,y代表砍区间[l,r]]内的竹子砍y次,最后一次要砍成0,每次砍掉的总长度相同,问第x次砍的高度是多少. 既然每次要求砍掉的 ...
- 2019牛客暑期多校训练营(第二场)-E MAZE
题目链接:https://ac.nowcoder.com/acm/contest/882/E 题意:n×m的矩阵,0表示可以走,1表示墙,不能通过.有q中操作,一种是改变坐标(x,y)的状态,一种是询 ...
- 2019牛客暑期多校训练营(第九场)A:Power of Fibonacci(斐波拉契幂次和)
题意:求Σfi^m%p. zoj上p是1e9+7,牛客是1e9: 对于这两个,分别有不同的做法. 前者利用公式,公式里面有sqrt(5),我们只需要二次剩余求即可. 后者mod=1e9,5才 ...
- 2019牛客暑期多校训练营(第一场)A题【单调栈】(补题)
链接:https://ac.nowcoder.com/acm/contest/881/A来源:牛客网 题目描述 Two arrays u and v each with m distinct elem ...
- 2019牛客暑期多校训练营(第一场) B Integration (数学)
链接:https://ac.nowcoder.com/acm/contest/881/B 来源:牛客网 Integration 时间限制:C/C++ 2秒,其他语言4秒 空间限制:C/C++ 5242 ...
- 2019牛客暑期多校训练营(第一场) A Equivalent Prefixes ( st 表 + 二分+分治)
链接:https://ac.nowcoder.com/acm/contest/881/A 来源:牛客网 Equivalent Prefixes 时间限制:C/C++ 2秒,其他语言4秒 空间限制:C/ ...
随机推荐
- Greenplum常用的gp_toolkit & pg_catalog监控语句
gp_toolkit 说明 Greenplum数据库提供了一个名为gp_tooikit的管理schema,该schema下有关于查询系统目录,日志文件, 用户创建(databases,schema,t ...
- 深入浅出的Java网络通信
已经发表个人公众号 代码展示 package two; import java.io.BufferedReader; import java.io.InputStreamReader; import ...
- Kubernetes kubectl 命令概述
kubectl用于运行Kubernetes集群命令的管理工具. 语法 kubectl [command] [TYPE] [NAME] [flags] command:指定要在一个或多个资源执行的操作 ...
- 获取当前服务的IP和端口号
package com.movitech.product.datahub.util; import org.slf4j.Logger; import org.slf4j.LoggerFactory; ...
- FusionInsight,一个融合的大数据平台
随着物联网技术和应用的普及,以运营商.互联网以及实体经济行业为代表的企业产生了越来越多的数据,大数据的发展越来越蓬勃. 从2007年开始,大数据应用成为很多企业的需求,2012年兴起并产生了大数据平台 ...
- Alpha3
队名:福大帮 组长博客链接:https://www.cnblogs.com/mhq-mhq/p/11899921.html 作业博客 :https://edu.cnblogs.com/campus/f ...
- m4a 转MP3
import os for filename in os.listdir(r'.'): print filename os.rename(filename,filename.replace(' ',' ...
- Calcite分析 - Rule
Calcite源码分析,参考: http://matt33.com/2019/03/07/apache-calcite-process-flow/ https://matt33.com/2019/03 ...
- mysql union all limit的使用
To apply ORDER BY or LIMIT to an individual SELECT, place the clause inside the parentheses that enc ...
- 008 webpack的其他使用方式
一:配置 1.配置文件 每次修改main文件,重新打包都要指定入口与出口,比较费事,可以使用配置文件的方式 在根目录下新建webpack.config.js: const path = require ...