博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【CQOI2009】中位数
阅读量:5325 次
发布时间:2019-06-14

本文共 1739 字,大约阅读时间需要 5 分钟。

分析

中位数是指把所有元素从小到大排列后,位于中间的数。

由于题目要求的是长度为奇数的子序列,又由中位数的定义,我们可以知道,一段满足要求的序列中,比\(b\)大的数一定和比\(b\)小的数一样多,我们只关心每个数与\(b\)的大小关系,而不是它的具体值,所以我们可以将每个数标记为\(1\)\(-1\),如果它大于\(b\),则标为\(1\),否则标为\(-1\)

于是我们可以利用差分的思想。记下\(b\)的位置为\(pos\),将\(pos\)两端分别开始扫,记录前缀和。

如果\(pos\)一端的某段前缀和值为\(3\),则说明这一段还需要\(3\)个小于\(b\)的数,于是在\(pos\)的另一端找到前缀和为\(-3\)的即可,这两段合起来再加上\(b\)本身即为一段满足要求的序列。

优化:利用桶记录\(pos\)一段的前缀和的值。

代码

#include 
#include
#include
#include
#define il inline#define re register#define tie0 cin.tie(0),cout.tie(0)#define fastio ios::sync_with_stdio(false)#define File(x) freopen(x".in","r",stdin);freopen(x".out","w",stdout)using namespace std;typedef long long ll;template
inline void read(T &x) { T f = 1; x = 0; char c; for (c = getchar(); !isdigit(c); c = getchar()) if (c == '-') f = -1; for ( ; isdigit(c); c = getchar()) x = x * 10 + (c ^ 48); x *= f;}int n, b, pos, cnt;int a[100005], pre[100005], last[100005],ton[100005];int main() { read(n), read(b); for (int i = 1; i <= n; ++i) { read(a[i]); if (a[i] < b) a[i] = -1; else if (a[i] > b) a[i] = 1; else if (a[i] == b) pos = i; } for (int i = pos - 1; i; --i) { pre[i] = pre[i + 1] + a[i]; if (!pre[i]) cnt++; ton[-pre[i]]++; } for (int i = pos + 1; i <= n; ++i) { last[i] = last[i - 1] + a[i]; if (!last[i]) cnt++; } /*for (int i = pos - 1; i; --i) 这样写会超时 for (int j = pos + 1; j <= n; ++j) if (pre[i] + last[j] == 0) cnt++;*/ for (int i = pos + 1; i <= n; ++i) cnt += ton[last[i]]; printf("%d", cnt + 1);//加上它本身 return 0;}

转载于:https://www.cnblogs.com/hlw1/p/11306942.html

你可能感兴趣的文章
ios 字符串处理:截取字符串、匹配字符串、分隔字符串
查看>>
网络丢包严重的解决办法
查看>>
[Training Video - 5] [Groovy Script Test Step - Collections, Exceptions] Array and ArrayList
查看>>
iOS 黑屏
查看>>
linux学习笔记<基本知识普及>
查看>>
Python哈希表的例子:dict、set
查看>>
使用Eclipse构建Maven的SpringMVC项目
查看>>
ajax json 动态传值
查看>>
[Xamarin] 製作Options Menu、Intent 呼叫網址和Market (转帖)
查看>>
bnu 52037 Escape from Ayutthaya
查看>>
C#是类型安全的
查看>>
c++网络编程错误(WSAStartup)
查看>>
在线图床工具的使用 https://sm.ms/
查看>>
MySQL5.7 error log时间显示问题
查看>>
taro 关于Swiper 组件使用 右侧白边问题
查看>>
php实现记住用户名和自动登录
查看>>
Quartz入门例子简介 从入门到菜鸟(二)
查看>>
车辆运动控制算法——MPC
查看>>
函数练习 阶乘累加求和四种方式
查看>>
升级linux bash
查看>>