Codeforces Round #345 (Div. 2)-C. Watchmen

来源:互联网 发布:淘宝直通车10分词 编辑:程序博客网 时间:2024/05/16 11:12

原题链接

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
31 17 51 5
output
2
input
60 00 10 2-1 10 11 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.


#include <cstdio>#include <cstring>#include <iostream>#include <algorithm>#include <map>#include <vector>#define maxn 200005#define MOD 1000000007using namespace std;typedef long long ll;struct Point{int x, y;int v;}node1[maxn], node2[maxn];bool cmp1(const Point &a, const Point &b){return a.x < b.x || (a.x == b.x && a.y < b.y);}bool cmp2(const Point&a, const Point&b){return a.y < b.y;}int main(){//freopen("in.txt", "r", stdin);int n;ll ans = 0;scanf("%d", &n);for(int i = 0; i < n; i++) scanf("%d%d", &node1[i].x, &node1[i].y);sort(node1, node1+n, cmp1);int cnt = 1, h = 0, k = 0;node2[0] = node1[0];for(int i = 1; i < n; i++){if(node1[i].x != node1[i-1].x || node1[i].y != node1[i-1].y){ node2[cnt-1].v = i - k; node2[cnt++] = node1[i]; k = i;    }if(node1[i].x != node1[i-1].x){ans += (ll)(i - h) * (i - h - 1) / 2;h = i;}}node2[cnt-1].v = n - k;ans += (ll)(n - h) * (n - h - 1) / 2;sort(node2, node2+cnt, cmp2);h = 0;int maxs = node2[0].v;for(int i = 1; i < cnt; i++){maxs += node2[i].v;if(node2[i].y != node2[i-1].y){maxs -= node2[i].v;   for(int j = h; j < i; j++){   maxs -= node2[j].v;   ans += (ll)maxs * node2[j].v;   }    maxs = node2[i].v;   h = i;}}for(int j = h; j < cnt; j++){maxs -= node2[j].v;ans += (ll)maxs * node2[j].v;}printf("%I64d\n", ans);return 0;}


0 0
原创粉丝点击