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 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116
| #include<cstdio> #include<cstring> #include<algorithm> #include<iostream> #include<queue> #include<map> #include<stack> #include<cmath> #include<set> #include<bitset> #include<complex> #include<cstdlib> #include<assert.h> #define inc(i,l,r) for(int i=l;i<=r;i++) #define dec(i,l,r) for(int i=l;i>=r;i--) #define link(x) for(edge *j=h[x];j;j=j->next) #define mem(a) memset(a,0,sizeof(a)) #define mid (x+y>>1) #define ll long long #define eps 1e-8 #define succ(x) (1<<x) #define lowbit(x) (x&(-x)) #define sqr(x) ((x)*(x)) #define NM 100005 #define nm 300005 using namespace std; const double pi=acos(-1); ll read(){ ll x=0,f=1;char ch=getchar(); while(!isdigit(ch)){if(ch=='-')f=-1;ch=getchar();} while(isdigit(ch))x=x*10+ch-'0',ch=getchar(); return f*x; }
int n,tot; ll a[NM],cnt,inf,c[NM],ans1,ans2;
ll mul(ll a,ll b){ __int128 t=a; t=t*b%inf; return (ll)t; }
ll qpow(ll x,ll t){return t?mul(qpow(mul(x,x)%inf,t>>1),(t&1?x:1ll)):1ll;}
ll bsgs(ll a,ll b){ map<ll,ll>v;int n=sqrt(inf)+1; ll inv=qpow(a,inf-2),t=qpow(a,n); for(int i=0;i<n;i++,b=mul(b,inv))if(!v.count(b))v[b]=i; ll k=1; for(int i=0;i<=n;i++,k=mul(k,t))if(v.count(k))return true; return false; }
bool check(ll t){ inf=t; cnt=mul(a[2],qpow(a[1],inf-2)); inc(i,2,n)if(mul(a[i-1],cnt)!=a[i])return false; return bsgs(cnt,a[1]); }
int main(){ n=read(); inc(i,1,n)a[i]=read(); if(n==1)return 0*puts("unsure"); if(n==2){ if(a[1]==a[2]&&a[1]>1)return 0*puts("error"); return 0*puts("unsure"); } ll t=0; inc(i,1,n-2)t=__gcd(t,abs(sqr(a[i+1])-a[i]*a[i+2])); inc(i,1,n)cnt=max(cnt,a[i]); if(t==0){ if(a[1]==a[2]){ puts(a[1]>1?"error":"unsure"); }else puts("unsure"); return 0; } for(ll i=2;i*i<=t;i++)if(t%i==0){ while(t%i==0)t/=i; if(i>cnt)c[++tot]=i; } if(t>1)c[++tot]=t; inc(i,1,tot)if(check(c[i])){ if(ans1&&ans2)return 0*puts("unsure"); ans1=cnt;ans2=inf; } if(ans1&&ans2)printf("%lld %lld\n",ans1,ans2); else puts("error"); return 0; }
|