当前位置: 代码迷 >> 综合 >> HDU 4908 BestCoder Sequence (计数问题)水
  详细解决方案

HDU 4908 BestCoder Sequence (计数问题)水

热度:73   发布时间:2023-11-15 14:26:05.0

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=4908

#include<bits/stdc++.h>
using namespace std;#define debug puts("YES");
#define rep(x,y,z) for(int (x)=(y);(x)<(z);(x)++)
#define ll long long#define lrt int l,int r,int rt
#define lson l,mid,rt<<1
#define rson mid+1,r,rt<<1|1
#define root l,r,rt
const int  maxn =4e4+5;
const int mod=1e9+7;
const int ub=10000;
ll powmod(ll x,ll y){ll t; for(t=1;y;y>>=1,x=x*x%mod) if(y&1) t=t*x%mod; return t;}
ll gcd(ll x,ll y){return y?gcd(y,x%y):x;}
/*
题目大意:定义一个序列,
中位数指定为M,长度为奇数,
大于M的令为1,小于M的令为-1,
然后用map把从M数字位置右边的前缀和计数下,
然后再扫描左边的,直接在map中累加答案就行了。
*/int n,m,x;
int a[maxn];
map<int,int> mp;
int main()
{while(scanf("%d%d",&n,&m)!=EOF){int pos;for(int i=1;i<=n;i++){scanf("%d",&a[i]);if(a[i]<m) a[i]=-1;else if(a[i]>m) a[i]=1;else{pos=i;a[i]=0;}}mp.clear();int sum=0,ans=0;for(int i=pos;i<=n;i++){sum+=a[i];mp[sum]++;}sum=0;for(int i=pos;i>=1;i--){sum+=a[i];ans+=mp[-sum];}printf("%d\n",ans);}return 0;
}

 

  相关解决方案