Codeforces Round #345 (Div. 1) A. Watchmen

相同的X,Y计进去,相同的二元组(X,Y)去重。

#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <cassert>
#include <cstring>
#include <set>
#include <map>
#include <list>
#include <queue>
#include <string>
#include <iostream>
#include <algorithm>
#include <functional>
#include <stack>
using namespace std;
typedef long long ll;
#define T int t_;Read(t_);while(t_--)
#define dight(chr) (chr>='0'&&chr<='9')
#define alpha(chr) (chr>='a'&&chr<='z')
#define INF (0x3f3f3f3f)
#define maxn (200005)
#define hashmod 100000007
#define ull unsigned long long
#define repne(x,y,i) for(i=x;i<y;++i)
#define repe(x,y,i) for(i=x;i<=y;++i)
#define ri register int
void Read(int &n){char chr=getchar(),sign=1;for(;!dight(chr);chr=getchar())if(chr=='-')sign=-1;
    for(n=0;dight(chr);chr=getchar())n=n*10+chr-'0';n*=sign;}
void Read(ll &n){char chr=getchar(),sign=1;for(;!dight(chr);chr=getchar())if
    (chr=='-')sign=-1;
    for(n=0;dight(chr);chr=getchar())n=n*10+chr-'0';n*=sign;}
int x[maxn],y[maxn],n;
map<pair<int,int>,int> ma;
pair<int,int> pa;
int main()
{
    freopen("a.in","r",stdin);
    freopen("b.out","w",stdout);
    ri i;
    Read(n);
    ll ans = 0;
    repne(0,n,i){
        Read(x[i]),Read(y[i]);
        pa = make_pair(x[i],y[i]);
        ma[pa]++;
    }
    map<pair<int,int>,int>::iterator it = ma.begin();
    sort(x,x+n),sort(y,y+n);
    int c = 1;
    repne(1,n,i){
        if(x[i]==x[i-1])++c;
        else ans += ((ll)c*(c-1))/2,c = 1;
    }
    ans += ((ll)c*(c-1))>>1;
    c = 1;
    repne(1,n,i){
        if(y[i]==y[i-1])++c;
        else ans += ((ll)c*(c-1))/2,c = 1;
    }
    ans += (ll)c*(c-1)>>1;
    for(;it!=ma.end();++it){
        c = it->second;
        ans = ans - ((ll)c*(c-1))/2;
    }
    cout << ans << endl;
    return 0;
}

 

转载于:https://www.cnblogs.com/zhuiyicc/p/9600341.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值