C. Watchmen
time limit per test

3 seconds

memory limit per test

256 megabytes

input

standard input

output

standard output

Watchmen are in a danger and Doctor Manhattan together with his friend Daniel Dreiberg should warn them as soon as possible. There are n watchmen on a plane, the i-th watchman is located at point (xi, yi).

They need to arrange a plan, but there are some difficulties on their way. As you know, Doctor Manhattan considers the distance between watchmen i and j to be |xi - xj| + |yi - yj|. Daniel, as an ordinary person, calculates the distance using the formula .

The success of the operation relies on the number of pairs (i, j) (1 ≤ i < j ≤ n), such that the distance between watchman i and watchmen j calculated by Doctor Manhattan is equal to the distance between them calculated by Daniel. You were asked to compute the number of such pairs.

Input

The first line of the input contains the single integer n (1 ≤ n ≤ 200 000) — the number of watchmen.

Each of the following n lines contains two integers xi and yi (|xi|, |yi| ≤ 109).

Some positions may coincide.

Output

Print the number of pairs of watchmen such that the distance between them calculated by Doctor Manhattan is equal to the distance calculated by Daniel.

Examples
input
3
1 1
7 5
1 5
output
2
input
6
0 0
0 1
0 2
-1 1
0 1
1 1
output
11
Note

In the first sample, the distance between watchman 1 and watchman 2 is equal to |1 - 7| + |1 - 5| = 10 for Doctor Manhattan and  for Daniel. For pairs (1, 1), (1, 5) and (7, 5), (1, 5) Doctor Manhattan and Daniel will calculate the same distances.

思路:(|i.x-j.x|+|i.y-j.y|)^2=(i.x-j.x)^2+(i.y-j.y)^2+2*|i.x-j.x|*|i.y-j.y|=(i.x-j.x)^2+(i.y-j.y)^2;

    所以满足条件i.x==j.x或i.y==j.y至少一个;两次分别对x和y排序找到相同的有多少,最后再减去x和y同时相同的就是结果了,因为当时没用long long 导致最后测数据的时候wa了,大哭一场啊!!!

AC代码:

#include <bits/stdc++.h>
using namespace std;
const int N=2e5+6;
struct node
{
int x,y;
};
node a[N];
int cmp1(node u,node v)
{
return u.x<v.x;
}
int cmp2(node u,node v)
{
if(u.y==v.y)return u.x<v.x;
return u.y<v.y;
}
/*
int cmp3(node u,node v)
{
if(u.x==v.x)
{
return u.y<v.y;
}
return u.x<v.x;
}*/
int main()
{
int n;
scanf("%d",&n);
for(int i=0;i<n;i++)
{
scanf("%d%d",&a[i].x,&a[i].y);
}
sort(a,a+n,cmp1);
long long num=1,ans=0;
for(int i=1;i<n;i++)
{
if(a[i].x==a[i-1].x)
{
num++;
}
else
{
long long s=(num-1)*num/2;
ans+=s;
num=1;
}
}
long long s=(num-1)*num/2;
ans+=s;
sort(a,a+n,cmp2);
num=1;
for(int i=1;i<n;i++)
{
if(a[i].y==a[i-1].y)
{
num++;
}
else
{
long long s=(num-1)*num/2;
ans+=s;
num=1;
}
}
s=num*(num-1)/2;
ans+=s;
num=1;
for(int i=1;i<n;i++)
{
if(a[i].x==a[i-1].x&&a[i].y==a[i-1].y)
{
num++;
}
else
{
long long s=num*(num-1)/2;
ans-=s;
num=1;
}
}
s=num*(num-1)/2;
ans-=s; cout<<ans<<"\n"; return 0;
}

最新文章

  1. bootstrap 组件
  2. Python之路【第十八篇】Django小项目webQQ实现
  3. 5.2---小数的二进制表示(CC150)
  4. An Example of On-Error Trigger in Oracle Forms
  5. dive into python 读笔(1)
  6. 【转】关于android应用程序的入口
  7. 从mina中学习超时程序编写
  8. c#接口和抽象类比较
  9. C语言使用vs2013进行编辑
  10. Flutter之CustomView
  11. jQuery toastr提示简单实现
  12. mybatis原理分析学习记录,mybatis动态sql学习记录
  13. APP-SERVICE-SDK:setStorageSync:fail;at page/near/pages/shops/shops page lifeCycleMethod onUnload function
  14. [C#.net]WinForm载入窗体完成后自动执行事件
  15. 通过cgroup给docker的CPU和内存资源做限制
  16. Win10 + vs2017 编译并配置tesseract4.1.0
  17. html (第四本书第四章参考)
  18. JAVA中String.format的用法 转16进制,还可以补0
  19. visual studio 2005提示脚本错误 /VC/VCWizards/2052/Common.js
  20. September 06th 2017 Week 36th Wednesday

热门文章

  1. 移动Web开发技巧汇总(转)
  2. Android 适配(drawable文件夹)图片适配(二)
  3. 大组合取模之:1&lt;=n&lt;=m&lt;=1e6,1&lt;=p&lt;=1e9
  4. iOS与JS开发交互总结
  5. Python菜鸟之路:Python基础-模块
  6. Delphi窗体研究,留个爪,以后回来研究
  7. pip-grep
  8. 如何用excel urldecode解码把url编码转为汉字?
  9. 【学习】Spring 的 AOP :基于Annotation 的“零配置”方式
  10. Java中byte转换int时与0xff进行与运算的原因