记录编号 |
497459 |
评测结果 |
AAAAAAAAAA |
题目名称 |
[中山ACM] 商人的宣传 |
最终得分 |
100 |
用户昵称 |
Chtholly |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.015 s |
提交时间 |
2018-05-23 22:01:51 |
内存使用 |
6.15 MiB |
显示代码纯文本
#include<bits/stdc++.h>
using namespace std;
int n,m,l;
struct Edge{
int to,next;
}edge[100001];
int f[110][110][110],fa[110],root=1;
int Add_edge(int u,int v){
edge[++root].next=fa[u];
edge[root].to=v;
fa[u]=root;
}
int main()
{
freopen("merchant.in","r",stdin);
freopen("merchant.out","w",stdout);
int u,v,q;
scanf("%d%d%d",&n,&m,&l);
for(int i=1;i<=m;i++){
scanf("%d%d",&u,&v);
Add_edge(u,v);
}
scanf("%d",&q);
for(int i=1;i<=n;i++)f[0][i][i]=1;
for(int i=1;i<=l;i++){
for(u=1;u<=n;u++){
for(int j=fa[u];j;j=edge[j].next){
v=edge[j].to;
for(int k=1;k<=n;k++){
f[i][u][k]+=f[i-1][v][k];
}
}
}
}
for(int i=0;i<q;i++){
scanf("%d%d",&u,&v);
printf("%d\n",f[l][u][v]);
}
return 0;
}