记录编号 |
193229 |
评测结果 |
AAAAAAAAAAA |
题目名称 |
数对的个数 |
最终得分 |
100 |
用户昵称 |
devil |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.121 s |
提交时间 |
2015-10-14 10:41:29 |
内存使用 |
7.94 MiB |
显示代码纯文本
#include <cstdlib>
#include <iostream>
#include <cstdio>
#include <cstring>
#include <cmath>
#include <map>
#include <stack>
#include <vector>
#include <queue>
#include <ctime>
#include <algorithm>
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
typedef long double ld;
typedef unsigned int uint;
const int inf=1061109567;
const int maxn=1000010;
const int maxm=20;
const int mod=7777777;
ll a[maxn];
int found(int l,int r,ll val)
{
int m,tl=l,tr=r;
while(tl<tr)
{
m=(tl+tr)>>1;
if(a[m]<val) tl=m+1;
else tr=m;
}
int al=tl;r++;
while(l<r)
{
m=(l+r)>>1;
if(a[m]<=val) l=m+1;
else r=m;
}
int ar=r;
if(a[al]==val) return ar-al;
else return 0;
}
int main()
{
freopen("dec.in","r",stdin);
freopen("dec.out","w",stdout);
//clock_t st=clock();
int n;ll c;scanf("%d%lld",&n,&c);
for(int i=1;i<=n;i++) scanf("%lld",&a[i]);
sort(a+1,a+1+n);ll cnt=0;
for(int i=1;i<=n;i++)
{
if(c+a[i]<=a[n])
{
cnt+=found(1,n,c+a[i]);
}
}
printf("%lld\n",cnt);
//clock_t ed=clock();
//printf("\nTime used : %.5lf Ms\n",double(ed-st)/CLOCKS_PER_SEC);
return 0;
}