题目简介易懂,附题目链接:https://cn.vjudge.net/contest/250938#problem/B
做题的时候,一直想用map来做,但是苦于只知其名不懂其意,所以最后就放弃了,挺可惜的,一定要把这个学会,太实用了!
好懒,不愿意写了,直接附大佬链接吧,不过这个不是用map写的,是用二分查找优化,挺容易理解的,啊啊啊啊啊还是想用map嘤嘤嘤~ 通向大佬的神奇一击
还有一种用map的方法写的,简单易懂,不解释啦
#include <iostream>
#include <cstdio>
#include <cstdlib>
#include <map>
using namespace std;
typedef long long ll;
int main()
{
ll t;
ll n, cnt, x, y;
scanf("%lld", &t);
while(t--)
{
map<ll, ll> a;//存x;
map<ll, ll> b;//存y;
cnt = 0;
scanf("%lld", &n);
for(int i = 1; i <= n; i++)
{
scanf("%lld%lld", &x, &y);
if(b.count(x))//b中对应x出现过的话,加上出现过的次数;
{
cnt += b[x];
}
if(a.count(y))//a中对应y出现过的话,加上出现过的次数;
{
cnt += a[y];
}
a[x]++;
b[y]++;
}
printf("%lld\n", cnt);
}
return 0;
}