[BestCoder Round #3] hdu 4908 BestCoder Sequence (计数)
- 作者: 五速梦信息网
- 时间: 2026年04月04日 13:58
BestCoder Sequence
Problem Description
Mr Potato is a coder.
Mr Potato is the BestCoder.
One night, an amazing sequence appeared in his dream. Length of this sequence is odd, the median number is M, and he named this sequence as Bestcoder Sequence.
As the best coder, Mr potato has strong curiosity, he wonder the number of consecutive sub-sequences which are bestcoder sequences in a given permutation of 1 ~ N.
Mr Potato is the BestCoder.
One night, an amazing sequence appeared in his dream. Length of this sequence is odd, the median number is M, and he named this sequence as Bestcoder Sequence.
As the best coder, Mr potato has strong curiosity, he wonder the number of consecutive sub-sequences which are bestcoder sequences in a given permutation of 1 ~ N.
Input
Input contains multiple test cases.
For each test case, there is a pair of integers N and M in the first line, and an permutation of 1 ~ N in the second line.
[Technical Specification]
For each test case, there is a pair of integers N and M in the first line, and an permutation of 1 ~ N in the second line.
[Technical Specification]
- 1 <= N <= 40000
- 1 <= M <= N
Output
For each case, you should output the number of consecutive sub-sequences which are the Bestcoder Sequences.
Sample Input
1 1
1
5 3
4 5 3 2 1
Sample Output
1
3HintFor the second case, {3},{5,3,2},{4,5,3,2,1} are Bestcoder Sequence.
Source
解题思路:
题意为 给定一个1 -N的排列,再给定一个数M(1<=M<=N)。问有多少连续的长度为奇数子序列,使得M在当中为中位数(M在子序列中)。
比方例子
5 3
4 5 3 2 1 N=5, M=3
{3},{5,3,2},{4,5,3,2,1} 为符合题意的连续子序列….
当时做的时候把包括M的全部长度为0,1,2…….的连续子序列都枚举了出来。然后推断推断M是否是中位数。结果
果断超时…….
贴一下题解思路:
写了一堆字,CSDN的排版太….了,贴图片把.
代码:
#include <iostream>
#include <stdio.h>
#include <string.h>
using namespace std;
const int maxn=40010;
int sum[maxn];
int cnt[maxn*2];
int n,m;
int val,p; int main()
{
while(scanf(“%d%d”,&n,&m)==2)
{
sum[0]=0;
for(int i=1;i<=n;i++)
{
sum[i]=sum[i-1];
scanf(“%d”,&val);
if(val<m)
sum[i]–;
else if(val>m)
sum[i]++;
else
p=i;
}
memset(cnt,0,sizeof(cnt));
for(int i=0;i<p;i++)
cnt[sum[i]+maxn]++;
int ans=0;
for(int i=p;i<=n;i++)
ans+=cnt[sum[i]+maxn];
printf(“%d\n”,ans);
}
return 0;
}
相关文章
-
[bzoj1269][AHOI2006文本编辑器editor] (splay模版题 or pb
[bzoj1269][AHOI2006文本编辑器editor] (splay模版题 or pb
- 互联网
- 2026年04月04日
-
[C 知识回顾
[C 知识回顾
- 互联网
- 2026年04月04日
-
[C#] 简单的 Helper 封装
[C#] 简单的 Helper 封装
- 互联网
- 2026年04月04日
-
[Android教程]EditText设置隐藏光标位置、选中文本和获取清除焦点
[Android教程]EditText设置隐藏光标位置、选中文本和获取清除焦点
- 互联网
- 2026年04月04日
-
[Android分享] 【转帖】Android ListView的A
[Android分享] 【转帖】Android ListView的A
- 互联网
- 2026年04月04日
-
[Android]使用Dagger 2进行依赖注入
[Android]使用Dagger 2进行依赖注入
- 互联网
- 2026年04月04日






