uva 11542 高斯消元

Square 
Input: Standard Input

Output: Standard Output

Given n integers you can generate 2n-1 non-empty subsets from them. Determine for how many of these subsets the product of all the integers in that is a perfect square. For example for the set {4,6,10,15} there are 3 such subsets. {4}, {6,10,15} and {4,6,10,15}. A perfect square is an integer whose square root is an integer. For example 1, 4, 9,16,…. .

Input

Input contains multiple test cases. First line of the input contains T(1≤T≤30) the number of test cases. Each test case consists of 2 lines. First line contains n(1≤n≤100) and second line contains n space separated integers.  All these integers are between 1 and 10^15.  None of these integers is divisible by a prime greater than 500.

Output

For each test case output is a single line containing one integer denoting the number of non-empty subsets whose integer product is a perfect square. The input will be such that the result will always fit into signed 64 bit integer.

Sample Input                              Output for Sample Input


4

3

2 3 5

3

6 10 15

4

4 6 10 15

3

2 2 2


0

1

3

3

Problemsetter: Abdullah al Mahmud

Special Thanks to: Manzurur Rahman Khan

题目大意:给n个整数,从中选1个或多个,他们的积是一个完全平方数。这样的情况有多少种?

解题思路:选s个整数出来(1<=s<=n),它们的积可以表示成a1^p1*a2.P2....an^pm,要想它是一个完全平方数,那pi必须是偶数。把每个数分解质因数,所有质因数的指数都模2,最后得出一个n*m的矩阵,进行消元,求出矩阵的秩r。那么就有n-r行每个元素都是0。从中选一行或多行(即求一个集合的真子集个数)都符合题目要求。

 1 #include <iostream>
 2 #include <cstdio>
 3 #include <cstring>
 4 using namespace std;
 5
 6 typedef long long LL;
 7 const int maxn=500;
 8 const int maxm=105;
 9 typedef int Matrix[maxm][maxm];
10 int prime[maxn],num;
11 bool flag[maxn];
12 Matrix A;
13
14 int max(int a,int b){ return a>b?a:b;}
15 void swap(int& a,int& b){int t=a;a=b;b=t;}
16
17 void get_primes()
18 {
19     int i,j;num=0;
20     memset(flag,1,sizeof(flag));
21     for(i=2;i<maxn;i++)
22     {
23         if(flag[i])prime[num++]=i;
24         for(j=0;j<num&&i*prime[j]<maxn;j++)
25         {
26             flag[i*prime[j]]=false;
27             if(i%prime[j]==0) break;
28         }
29     }
30 }
31
32 int rank(int n,int m)
33 {
34     int i=0,j=0,k,r,u;
35     while(i<n&&j<m)
36     {
37         r=i;
38         for(k=i;k<n;k++)
39             if(A[k][j]){r=k;break;}
40         if(A[r][j])
41         {
42                if(r!=i) for(k=0;k<=m;k++) swap(A[r][k],A[i][k]);
43             for(u=i+1;u<n;u++) if(A[u][j])
44             for(k=i;k<=m;k++) A[u][k]^=A[i][k];
45                 i++;
46         }
47         j++;
48     }
49     return i;
50 }
51
52 LL Pow(LL a,LL b)
53 {
54     LL ret=1;
55     while(b)
56     {
57         if(b&1) ret*=a;
58         a*=a;b>>=1;
59     }
60     return ret;
61 }
62
63 int main()
64 {
65     get_primes();
66     int i,j,t,n,maxp;
67     LL p;
68     scanf("%d",&t);
69     while(t--)
70     {
71         scanf("%d",&n);
72         memset(A,0,sizeof(A));
73         maxp=0;
74         for(i=0;i<n;i++)
75         {
76             scanf("%lld",&p);
77             for(j=0;j<num;j++)
78             {
79                 if(p==1) break;
80                 while(p%prime[j]==0)
81                 {
82                     maxp=max(maxp,j);
83                     p/=prime[j];
84                     A[i][j]^=1;
85                 }
86             }
87         }
88         int r=rank(n,maxp+1);
89         printf("%lld\n",Pow(2,n-r)-1);
90     }
91     return 0;
92 }

uva 11542 高斯消元

时间: 2024-10-16 12:56:22

uva 11542 高斯消元的相关文章

uva 10828 高斯消元求数学期望

Back to Kernighan-RitchieInput: Standard Input Output: Standard Output You must have heard the name of Kernighan and Ritchie, the authors of The C Programming Language. While coding in C, we use different control statements and loops, such as, if-the

UVA 11542 - Square(高斯消元)

UVA 11542 - Square 题目链接 题意:给定一些数字,保证这些数字质因子不会超过500,求这些数字中选出几个,乘积为完全平方数,问有几种选法 思路:对每个数字分解成质因子后,发现如果要是完全平方数,选出来的数字的每个质因子个数都必然要是偶数,这样每个质因子可以列出一个异或的方程,如果数字包含质因子,就是有这个未知数,然后进行高斯消元,求出自由变量的个数,每个自由变量可以选或不选,这样的情况就是(2^个数),然后在扣掉什么都不选的1种就是答案了 代码: #include <cstdi

UVA 1397 - The Teacher&#39;s Side of Math(高斯消元)

UVA 1397 - The Teacher's Side of Math 题目链接 题意:给定一个x=a1/m+b1/n,求原方程组 思路:由于m*n最多20,所有最高项只有20,然后可以把每个此项拆分,之后得到n种不同无理数,每一项为0,就可以设系数为变元,构造方程进行高斯消元 一开始用longlong爆了,换成分数写法也爆了,又不想改高精度,最后是机智的用了double型过的,不过用double精度问题,所以高斯消元的姿势要正确,并且最后输出要注意-0的情况 代码: #include <c

uva 10808 - Rational Resistors(基尔霍夫定律+高斯消元)

题目链接:uva 10808 - Rational Resistors 题目大意:给出一个博阿含n个节点,m条导线的电阻网络,求节点a和b之间的等效电阻. 解题思路:基尔霍夫定律,任何一点的电流向量为0.就是说有多少电流流入该节点,就有多少电流流出. 对于每次询问的两点间等效电阻,先判断说两点是否联通,不连通的话绝逼是1/0(无穷大).联通的话,将同一个联通分量上的节点都扣出来,假设电势作为变元,然后根据基尔霍夫定律列出方程,因为对于每个节点的电流向量为0,所以每个节点都有一个方程,所有与该节点

uva 1564 - Widget Factory(高斯消元+逆元)

题目链接:uva 1564 - Widget Factory 题目大意:n种零件,m次工作日程,零件序号从1到n,给出m次工作日程的信息,x,s,e,表示生产了x个零件,从星期s开始到星期e(有可能是多个星期),然后给出生产的x个零件的序号.求每个零件被生产需要多少天(保证在3到10天) 解题思路:因为不能确定每个工作日程具体生产了几天,所以对应列出的方程均为线性模方程(模7),所以在高斯消元的过程中遇到除法要转换成乘上逆元. #include <cstdio> #include <cs

uva 1560 - Extended Lights Out(枚举 | 高斯消元)

题目链接:uva 1560 - Extended Lights Out 题目大意:给定一个5?6的矩阵,每个位置上有一个灯和开关,初始矩阵表示灯的亮暗情况,如果按了这个位置的开关,将会导致周围包括自己位置的灯状态变换,求一个按开关位置,保证所有灯都灭掉. 解题思路: 枚举,枚举第一行的状态,然后递推出后面四行的状态. 高斯消元,对于每个位置对定变量,这样列出30个方程求解. C++ 枚举 #include <cstdio> #include <cstring> #include &

UVA 1560 - Extended Lights Out(高斯消元)

UVA 1560 - Extended Lights Out 题目链接 题意:给定一个矩阵,1代表开着灯,0代表关灯,没按一个开关,周围4个位置都会变化,问一个按的方法使得所有灯都变暗 思路:两种做法: 1.枚举递推 这个比较简单,就枚举第一行,然后递推过去,每次如果上一行是亮灯,则下一行开关必须按下去 2.高斯消元, 这个做法比较屌一些,每个位置对应上下左右中5个位置可以列出一个异或表达式,然后30个位置对应30个异或表达式,利用高斯消元法就能求出每个位置的解了 代码: 高斯消元法: #inc

UVa 10828 Back to Kernighan-Ritchie 高斯消元+概率DP

题目来源:UVa 10828 Back to Kernighan-Ritchie 题意:从1开始 每次等概率从一个点到和他相邻的点 有向 走到不能走停止 求停止时每个点的期望 思路:写出方程消元 方程有唯一解 多解 无解的情况 有环 一直再环里无法停止算无穷大 从1不能到的点期望为0 #include <cstdio> #include <cstring> #include <algorithm> #include <vector> #include <

UVA 1397 - The Teacher&amp;#39;s Side of Math(高斯消元)

UVA 1397 - The Teacher's Side of Math 题目链接 题意:给定一个x=a1/m+b1/n.求原方程组 思路:因为m*n最多20,全部最高项仅仅有20.然后能够把每一个此项拆分.之后得到n种不同无理数,每一项为0.就能够设系数为变元.构造方程进行高斯消元 一開始用longlong爆了.换成分数写法也爆了,又不想改高精度.最后是机智的用了double型过的,只是用double精度问题,所以高斯消元的姿势要正确,而且最后输出要注意-0的情况 代码: #include