HDU 4908——BestCoder Sequence,hdu4908

來源:互聯網
上載者:User

HDU 4908——BestCoder Sequence,hdu4908

BestCoder Sequence Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 169    Accepted Submission(s): 82


Problem DescriptionMr 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.
 
InputInput 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]
1. 1 <= N <= 40000
2. 1 <= M <= N
 
OutputFor each case, you should output the number of consecutive sub-sequences which are the  Bestcoder Sequences
 
Sample Input
1 115 34 5 3 2 1
 
Sample Output
13HintFor the second case, {3},{5,3,2},{4,5,3,2,1} are Bestcoder Sequence.



————————————————————————————————————————————

#include<iostream>#include<cstdio>#include<cstring>#include<algorithm>#define M 100001#define base 40000using namespace std;int a[M],dp[M];int main(){    int n,m,x;    while(scanf("%d%d",&n,&m)!=EOF){        for(int i=0;i<n;++i){            scanf("%d",&a[i]);            if(a[i]==m) x=i;        }        memset(dp,0,sizeof dp);        int ans=0;        for(int i=x+1;i<n;++i){            if(a[i]>m) ans++;  //大的加小的減            else ans--;            dp[ans+base]++;    //記錄出現該狀態的次數        }        ans=++dp[base];//當狀態數為base,才滿足中位元        int tmp=0;        for(int i=x-1;i>=0;--i){            if(a[i]>m) tmp++;            else tmp--;            ans+=dp[-tmp+base];//狀態相加為base的個數        }        cout<<ans<<endl;    }    return 0;}



















1242


杭電ACM1005 Number Sequence

這個題跟智商有關係,是數學題。
有重複持續時間:49 我以前也是別人跟我說的
#include<stdio.h>
int main()
{
int f[1000]={0},n,i,a,b;
while(scanf("%d%d%d",&a,&b,&n)!=EOF)
{
f[0]=1;
f[1]=1;
if(a==0&&b==0&&n==0)
break;
for(i=2;i<(n%49);i++)
{
f[i]=(a*f[i-1]+b*f[i-2])%7;
}
printf("%d\n",f[n%49-1]);
}
return 0;
}
 
Max Sum http://acmhdueducn/showproblemphp?pid=1003 Problem Description Given a sequence a[1],a

上機調試去。
 

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.