码迷,mamicode.com
首页 > 其他好文 > 详细

hdu 5400 Arithmetic Sequence

时间:2017-07-02 16:14:06      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:problem   data-   can   UI   tty   type   length   ble   word   

hdu 5400 Arithmetic Sequence

分析:
 首先预处理出来出ii这个位置向前d_1 d?1的等差序列;
 向后d_2 d?2的等差数列能延续到多长,记作l_i,r_i l?i,r?i
 假设d_1!=d_2  d?1≠d2,那么枚举中间位置。答案为l_i*r_i l?i?r?i
 假设d_1 =d_2  d?1=d?2,枚举開始位置。答案为r_i r?i
代码:
#include<iostream>
#include<cstdio>
using namespace std;
#define ll long long
const int N=101000;
int n,d1,d2;
int a[N],l[N],r[N];
ll ans;
int main()
{
    while (scanf("%d%d%d",&n,&d1,&d2)!=EOF) {
        for(int i=0; i<n; i++)
              scanf("%d",a+i);
        for(int i=0; i<n; i++)
            if (i==0||a[i-1]+d1!=a[i])
                 l[i]=1;
            else
                 l[i]=l[i-1]+1;
        for(int i=n-1; i>=0; i--)
              if(i==n-1||a[i]+d2!=a[i+1])
                     r[i]=1;
              else
                   r[i]=r[i+1]+1;
        ans=0;
        for(int i=0; i<n; i++)
            if(d1!=d2)
               ans+=(ll)l[i]*r[i];
            else
                ans+=r[i];
        printf("%lld\n",ans);
    }
    return 0;
}

hdu 5400 Arithmetic Sequence

标签:problem   data-   can   UI   tty   type   length   ble   word   

原文地址:http://www.cnblogs.com/cxchanpin/p/7106160.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!