「codechefSUBGCD」Subarray GCD
题解
发现如果一段子序列的gcd=1的话那么整段的gcd也等于1
。。。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
#include<iostream> #include<cstdio> #include<cstring> #include<cstdlib> #include<algorithm> #include<cmath> #include<set> #define ll long long using namespace std; inline int read() { int x=0,f=1;char ch=getchar(); while(ch<'0'||ch>'9'){if(ch=='-')f=-1;ch=getchar();} while(ch>='0'&&ch<='9'){x=x*10+ch-'0';ch=getchar();} return x*f; } int gcd(int x,int y) { return y==0?x:gcd(y,x%y); } int T,n,ans; int main() { T=read(); while(T--) { n=read();ans=read(); for(int i=1;i<n;i++) { int x=read(); ans=gcd(ans,x); } if(ans==1)printf("%d\n",n); else puts("-1"); } return 0; } |
Subscribe