Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 1614 Accepted Submission(s): 566
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.
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. 1 <= N <= 40000
2. 1 <= M <= N
#include <stdio.h> #include <math.h> #include <iostream> #include <algorithm> #include <string.h> #include <vector> using namespace std; const int N = 40005; int a[N]; int cnt[2*N]; int main() { int n,m; while(scanf("%d%d",&n,&m)!=EOF){ int id = -1; for(int i=1;i<=n;i++){ scanf("%d",&a[i]); if(a[i]==m){ id = i; } } memset(cnt,0,sizeof(cnt)); int ans = 0; int num = 0,j=0; for(int i=id-1;i>=1;i--){ ///往左计数 j++; if(a[i]<m) num++; else num--; if(num==0) ans++; cnt[N+num]++; } num = 0,j=0; for(int i=id+1;i<=n;i++){ j++; if(a[i]<m) num++; else num--; if(num==0) ans++; ans+=cnt[N-num]; } printf("%d\n",ans+1); } }