B - Linear Algebra Test 、Gym - 101502B

题目简介易懂,附题目链接: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;
}

​

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值