题解:

感觉被坑出翔。。。

显然我们把矩阵乘法中的点当成原图中的边就可以了。

先写opertor 在struct里面居然只能带一个变量?。。。

放到外面,然后还得加引用?

然后题目描述不清,重边怎么算?好吧,后来知道重边算两条。

然后没开ll,没取模各贡献一次WA。。。

代码:

 #include<cstdio>
#include<cstdlib>
#include<cmath>
#include<cstring>
#include<algorithm>
#include<iostream>
#include<vector>
#include<map>
#include<set>
#include<queue>
#include<string>
#define inf 1000000000
#define maxn 500
#define maxm 500+100
#define eps 1e-10
#define ll long long
#define pa pair<int,int>
#define for0(i,n) for(int i=0;i<=(n);i++)
#define for1(i,n) for(int i=1;i<=(n);i++)
#define for2(i,x,y) for(int i=(x);i<=(y);i++)
#define for3(i,x,y) for(int i=(x);i>=(y);i--)
#define for4(i,x) for(int i=head[x],y;i;i=e[i].next)
#define mod 45989
using namespace std;
inline ll read()
{
ll x=,f=;char ch=getchar();
while(ch<''||ch>''){if(ch=='-')f=-;ch=getchar();}
while(ch>=''&&ch<=''){x=*x+ch-'';ch=getchar();}
return x*f;
}
int n,m,s,tot,cnt,num[maxn],c[maxn][];
struct matrix
{
int d[maxn][maxn];
matrix(){memset(d,,sizeof(d));}
}a,b;
inline matrix operator *(matrix &x,matrix &y)
{
matrix z;
for1(i,m)
for1(j,m)
for1(k,m)
(z.d[i][j]+=x.d[i][k]*y.d[k][j])%=mod;
return z;
}
inline void print(matrix x)
{
for1(i,m)for1(j,m)cout<<i<<' '<<j<<' '<<x.d[i][j]<<endl;
}
void ksm(ll y)
{
for(;y;y>>=,a=a*a)
if(y&)b=b*a;
}
int main()
{
freopen("input.txt","r",stdin);
freopen("output.txt","w",stdout);
n=read();m=read();s=read();ll q=read();tot=;
for1(i,m)
{
int x=read(),y=read();
c[++tot][]=x;c[tot][]=y;
c[++tot][]=y;c[tot][]=x;
}
m=tot;
for1(i,m)for1(j,m)if(i!=j&&i!=(j^)&&c[i][]==c[j][])a.d[i][j]=;
for1(i,m)b.d[i][i]=;
ksm(q-);
for1(i,m)if(c[i][]==s)num[++cnt]=i;
for1(i,n)
{
int ans=;
for1(j,m)if(c[j][]==i)
for1(k,cnt)(ans+=b.d[num[k]][j])%=mod;
printf("%d\n",ans);
}
return ;
}

3792: 跑步

Time Limit: 10 Sec  Memory Limit: 256 MB
Submit: 48  Solved: 21
[Submit][Status]

Description

小白非常喜欢跑步,所以他经常在校园内跑步(其实是想看美女~)。校园可以看成由N个地区,由M个道路连接。我们小白早上从一个地点出发,但是不知道怎么跑才好。小白有个习惯,不会沿着刚刚经过的道路再返回(比如从A到B经过C道路,下一次,不会再沿着C从B返回A)。
小白想知道从他出发的地点,经过Q条路,到达每个点的方案数。这样方便他去选择。

Input

第一行3个整数N,M,S,Q。表示有N个地区,M条道路,从S出发,需要经过Q条路。
下面M行,每行两个整数表示A,B之间有条道路。

Output

一共N行,每行一个整数表示从S到I的方案数(mod 45989)

Sample Input

10 20 9 10
1 5
5 10
10 4
10 2
10 7
4 3
10 9
2 8
5 6
6 1
2 10
4 7
9 10
9 6
7 3
7 3
7 2
1 8
9 7
4 5

Sample Output

17420
41928
35701
40814
31937
22933
5754
15848
43620
10819

HINT

N<=30 M<=60 Q<=10^16

05-08 15:51