二分图——HDU 6016

  • 题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=6016

  • 题意: 给出n只公羊和m只母羊,给出k对公羊和母羊的关系,求有多少种 A-B-C-D (A,B,C,D各不相同)

  • 分析: 我们可以发现要求的 A-B-C-D 即一个二分图中相连的三条边,于是我们可以枚举每一条边,然后计算它的两个端点能够再连几条边出去,累加即可

  • AC代码:

/*************************************************************************
    > File Name: test.cpp
    > Author: Akira 
    > Mail: qaq.febr2.qaq@gmail.com 
 ************************************************************************/

#include <iostream>
#include <sstream>
#include <cstdio>
#include <cstring>
#include <string>
#include <cstdlib>
#include <algorithm>
#include <bitset>
#include <queue>
#include <stack>
#include <map>
#include <cmath>
#include <vector>
#include <set>
#include <list>
#include <ctime>
#include <climits>
typedef long long LL;
typedef unsigned long long ULL;
typedef long double LD;
#define MST(a,b) memset(a,b,sizeof(a))
#define CLR(a) MST(a,0)
#define Sqr(a) ((a)*(a))
using namespace std;

#define MaxN 100001
#define MaxM MaxN*10
#define INF 0x3f3f3f3f
#define PI 3.1415926535897932384626
const int mod = 1E9+7;
const double eps = 1e-6;
#define bug cout<<88888888<<endl;
LL a[MaxN];
LL b[MaxN];
struct Edge{
    int u,v;
}edge[MaxN];
int T,n,m,k;
int main()
{
    //std::ios::sync_with_stdio(false);
    scanf("%d", &T);
    while(T--)
    {
        scanf("%d%d%d", &n, &m, &k);
        int u,v;
        CLR(a);CLR(b);
        for(int i=0;i<k;i++)
        {
            scanf("%d%d", &u, &v);
            a[u]++;
            b[v]++;
            edge[i].u = u;
            edge[i].v = v;
        }
        LL ans=0;
        for(int i=0;i<k;i++)
        {
            int u=edge[i].u;
            int v=edge[i].v;
            ans+=(a[u]-1)*(b[v]-1);
        }
        printf("%I64d\n",ans*2);
    }
    //system("pause");
}
  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值