前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >hdu 3908 Triple(组合计数、容斥原理)

hdu 3908 Triple(组合计数、容斥原理)

作者头像
Gxjun
发布2018-03-26 15:58:36
7740
发布2018-03-26 15:58:36
举报
文章被收录于专栏:mlml

Triple

Time Limit: 5000/3000 MS (Java/Others)    Memory Limit: 125536/65536 K (Java/Others) Total Submission(s): 1365    Accepted Submission(s): 549

Problem Description

Given many different integers, find out the number of triples (a, b, c) which satisfy a, b, c are co-primed each other or are not co-primed each other. In a triple, (a, b, c) and (b, a, c) are considered as same triple.

Input

The first line contains a single integer T (T <= 15), indicating the number of test cases. In each case, the first line contains one integer n (3 <= n <= 800), second line contains n different integers d (2 <= d < 105) separated with space.

Output

For each test case, output an integer in one line, indicating the number of triples.

Sample Input

1 6 2 3 5 7 11 13

Sample Output

20

Source

2011 Multi-University Training Contest 7 - Host by ECNU

给你n个数,对于其中的任意n个数,a,b,c 要么两两互斥,要么a,b,c两两不互斥......

要你求出满足这一条件的组合数。

分析:

    对于任意的三个数,a,b,c 我们知道有这些情况,0对互斥(即两两都不互斥),1对互斥,两对互斥,三对互斥(即两两互斥)。

  其后思路与其相同: http://blog.csdn.net/cool_fires/article/details/8681888

  代码:

代码语言:javascript
复制
 1 #include<cstdio>
 2 #include<cstring>
 3 using namespace std;
 4 const int maxn=100005;
 5 int item[maxn];
 6 int  gcd(int a,int b)
 7 {
 8     if(b==0)return a;
 9     return gcd(b,a%b);
10 }
11 int main()
12 {
13   int cas,n;
14   scanf("%d",&cas);
15   while(cas--)
16   {
17     scanf("%d",&n);
18    for(int i=0;i<n;i++)
19     scanf("%d",item+i);
20    int ans=0;
21    for(int i=0;i<n;i++)
22    {
23          int numa=0,numb=0;
24         for(int j=0;j<n;j++)
25      {
26          if(i!=j)
27          {
28            if(gcd(item[i],item[j])==1)numa++;
29            else numb++;
30          }
31      }
32       ans+=numa*numb;
33    }
34     printf("%d\n",(n*(n-1)*(n-2)/6)-ans/2);
35   }
36  return 0;
37 }
本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2014-10-24 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • Triple
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档