74 lines
1.0 KiB
C++
74 lines
1.0 KiB
C++
|
#include<cstdio>
|
|||
|
#include<cstring>
|
|||
|
using namespace std;
|
|||
|
const int mod=998244353,N=21;
|
|||
|
char s[N][30];
|
|||
|
int mask[N];
|
|||
|
long long ans=0;
|
|||
|
long long qpow(long long n,int l )
|
|||
|
{
|
|||
|
long long res=1;
|
|||
|
while(l>0)
|
|||
|
{
|
|||
|
if(l&1)
|
|||
|
{
|
|||
|
res=res*n%mod;
|
|||
|
}
|
|||
|
l>>=1;
|
|||
|
n=n*n%mod;
|
|||
|
}
|
|||
|
return res;
|
|||
|
}
|
|||
|
int Count(int x)
|
|||
|
{
|
|||
|
int cnt=0;//cnt=0!
|
|||
|
while(x>0)
|
|||
|
{
|
|||
|
if(x&1)
|
|||
|
{
|
|||
|
cnt++;
|
|||
|
}
|
|||
|
x>>=1;
|
|||
|
}
|
|||
|
return cnt;
|
|||
|
}
|
|||
|
int main()
|
|||
|
{
|
|||
|
int n,l;
|
|||
|
scanf("%d%d",&n,&l);
|
|||
|
for(int i=0; i<n; i++)//0~n-1 -> 1~n
|
|||
|
{
|
|||
|
scanf("%s",s[i]);
|
|||
|
int len=strlen(s[i]);
|
|||
|
for(int j=0; j<len; j++)
|
|||
|
{
|
|||
|
mask[i]|=(1<<(s[i][j]-'a'));
|
|||
|
}
|
|||
|
}
|
|||
|
for(int i=1;i<(1<<n);i++)//ѡ<><D1A1><EFBFBD>ļ<EFBFBD><C4BC><EFBFBD>
|
|||
|
{
|
|||
|
//ch<63><68><EFBFBD><EFBFBD><EFBFBD>ݣ<EFBFBD><DDA3><EFBFBD><EFBFBD>еIJ<D0B5><C4B2><EFBFBD> <20><>cntѡ<74>˼<EFBFBD><CBBC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ϣ<EFBFBD>
|
|||
|
int ch=(1<<26)-1,cnt=0;//1<<26 ->1<<j
|
|||
|
for(int j=0;j<n;j++)
|
|||
|
{
|
|||
|
if(i&(1<<j))
|
|||
|
{
|
|||
|
cnt++;
|
|||
|
ch&=mask[j];
|
|||
|
}
|
|||
|
}
|
|||
|
//ż<><C5BC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>-<2D><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>+
|
|||
|
if(cnt&1)
|
|||
|
{
|
|||
|
ans=(ans+qpow(Count(ch),l))%mod;
|
|||
|
}
|
|||
|
else
|
|||
|
{
|
|||
|
// ans = (ans + (mod - qpow(Count(ch), l)) % mod) % mod;
|
|||
|
ans=(ans+mod-qpow(Count(ch),l))%mod;
|
|||
|
}
|
|||
|
}
|
|||
|
printf("%lld",ans);
|
|||
|
return 0;
|
|||
|
}
|