CodeForces

来源:互联网 发布:mac系统删除文件 编辑:程序博客网 时间:2024/06/05 03:57

Little Petya likes points a lot. Recently his mom has presented him n points lying on the line OX. Now Petya is wondering in how many ways he can choose three distinct points so that the distance between the two farthest of them doesn't exceed d.

Note that the order of the points inside the group of three chosen points doesn't matter.

Input

The first line contains two integers: n and d (1 ≤ n ≤ 105; 1 ≤ d ≤ 109). The next line contains n integers x1, x2, ..., xn, their absolute value doesn't exceed 109 — the x-coordinates of the points that Petya has got.

It is guaranteed that the coordinates of the points in the input strictly increase.

Output

Print a single integer — the number of groups of three points, where the distance between two farthest points doesn't exceed d.

Please do not use the %lld specifier to read or write 64-bit integers in С++. It is preferred to use the cincout streams or the %I64d specifier.

Example
Input
4 31 2 3 4
Output
4
Input
4 2-3 -2 -1 0
Output
2
Input
5 191 10 20 30 50
Output
1
Note

In the first sample any group of three points meets our conditions.

In the seconds sample only 2 groups of three points meet our conditions: {-3, -2, -1} and {-2, -1, 0}.

In the third sample only one group does: {1, 10, 20}.


代码:

#include<iostream>#include<string>#include<cstdio>#include<algorithm>#include<cmath>#include<iomanip>#include<queue>#include<cstring>#include<map>using namespace std;typedef long long ll;#define M 100005ll n,d;ll a[M];int main(){    ll i;    cin>>n>>d;    for(i=1;i<=n;i++)    {        scanf("%I64d",&a[i]);    }    if(n<3)    {        cout<<0<<endl;        return 0;    }    if(n==3)    {        if(a[3]-a[1]<=d)            cout<<1<<endl;        else            cout<<0<<endl;        return 0;    }    ll ans=0;    ll s,e;    s=1; e=3;    while(s<=n-2)    {        while(e+1<=n&&a[e+1]-a[s]<=d)        {            e++;        }        ll temp=e-s;        if(a[e]-a[s]<=d)            temp=e-s;        else            temp=0;        ans+=temp*(temp-1)/2;        s++;    }    cout<<ans<<endl;    return 0;}


原创粉丝点击