BZOJ2560 (어려움)
4697 단어 my-code
/**************************************************************
Problem: 2560
User: DtenSherlock
Language: C++
Result: Accepted
Time:1784 ms
Memory:2300 kb
****************************************************************/
#include
#include
#include
#include
#include
#include
#include
#include
#include
using namespace std;
typedef long long LL;
const int imax=20;
const int kmax=1<<16;
const int mod=1e9+7;
int n,T;
LL a[imax][imax];
LL f[kmax],g[kmax];
void iread()
{
scanf("%d",&n);
for(int i=1;i<=n;i++)
for(int j=1;j<=n;j++) scanf("%lld",&a[i][j]);
}
void iwork()
{
memset(f,0,sizeof(f));
int Max=(1<1;
for(int s=1;s<=Max;s++)
{
g[s]=1;
for(int i=1;i<=n;i++)
if(s&(1<1)))
{
for(int j=i+1;j<=n;j++)//
if(s&(1<1)))
g[s]=(g[s]*(a[i][j]+1))%mod;// +1
}
int nows=0;
for(int i=1;i<=n;i++)
if(s&(1<1))) { nows=(s^(1<1))); break;}
f[s]=g[s];
for(int i=nows;i;i=nows&(i-1))// tips
{
f[s]=(f[s]-((g[i]*f[s^i])%mod)+mod)%mod;
}
}
printf("%lld
",f[Max]);
}
int main()
{
iread();
iwork();
return 0;
}