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
| #include<bits/stdc++.h> using namespace std; int const N=152501,p=998244353; int n,u[2505],v[2505],w[2505],phi[N+5],pr[50005],cnt; bool flag[N+5]; void init() { phi[1]=1; for(int i=2;i<=N;i++) { if(!flag[i])pr[++cnt]=i,phi[i]=i-1; for(int j=1;j<=cnt&&i*pr[j]<=N;j++) { flag[i*pr[j]]=1; if(!(i%pr[j])){phi[i*pr[j]]=phi[i]*pr[j];break;} phi[i*pr[j]]=phi[i]*(pr[j]-1); } } } inline int mod(const int &x){return x>=p?x-p:x;} int pw(int x,int y) { int res=1; while(y) { if(y&1)res=1ll*res*x%p; x=1ll*x*x%p; y>>=1; } return res; } struct poly { int x0,x1; poly(){x0=x1=0;} poly(int a,int b){x0=a,x1=b;} friend poly operator +(poly a,poly b) {return poly(mod(a.x0+b.x0),mod(a.x1+b.x1));} friend poly operator -(poly a,poly b) {return poly(mod(a.x0-b.x0+p),mod(a.x1-b.x1+p));} friend poly operator *(poly a,poly b) {return poly(1ll*a.x0*b.x0%p,mod(1ll*a.x0*b.x1%p+1ll*a.x1*b.x0%p));} friend poly operator /(poly a,poly b) { if(a.x0==0&&b.x0==0) { int inv=pw(b.x1,p-2); return poly(1ll*a.x1*inv%p,0); } int inv=pw(b.x0,p-2); return poly(1ll*a.x0*inv%p,((1ll*a.x1*b.x0-1ll*a.x0*b.x1)%p*inv%p*inv%p+p)%p); } }mat[31][31]; int deg(poly a){return a.x0?0:(a.x1?1:2);} int det() { int f=1; for(int i=1;i<=n;i++) { int c=i; for(int j=i+1;j<=n;j++) if(deg(mat[j][i])<deg(mat[c][i]))c=j; if(c!=i)swap(mat[i],mat[c]),f*=-1; if(deg(mat[i][i])==2)return 0; for(int j=i+1;j<=n;j++) { poly t=mat[j][i]/mat[i][i]; for(int k=i;k<=n;k++) mat[j][k]=mat[j][k]-mat[i][k]*t; } } poly res; if(f==1)res=poly(1,0); else res=poly(p-1,0); for(int i=1;i<=n;i++)res=res*mat[i][i]; return res.x1; } int main() { init(); int m,ans=0; scanf("%d%d",&n,&m); n--; for(int i=1;i<=m;i++)scanf("%d%d%d",&u[i],&v[i],&w[i]); for(int i=1;i<=N;i++) { memset(mat,0,sizeof(mat)); int cnt=0; for(int j=1;j<=m;j++) if(!(w[j]%i)) { mat[u[j]][v[j]]=mat[u[j]][v[j]]-poly(1,w[j]); mat[v[j]][u[j]]=mat[v[j]][u[j]]-poly(1,w[j]); mat[u[j]][u[j]]=mat[u[j]][u[j]]+poly(1,w[j]); mat[v[j]][v[j]]=mat[v[j]][v[j]]+poly(1,w[j]); cnt++; } if(cnt<n)continue; ans=mod(ans+1ll*det()*phi[i]%p); } printf("%d",ans); return 0; }
|
v1.5.2