记录编号 |
327105 |
评测结果 |
AAAAAAAAAA |
题目名称 |
森林大礼包 |
最终得分 |
100 |
用户昵称 |
NewBee |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
1.241 s |
提交时间 |
2016-10-21 19:50:27 |
内存使用 |
8.68 MiB |
显示代码纯文本
#include<cstdio>
#include<cstring>
#define Cu fclose(stdin);fclose(stdout);return 0;
#define Begin freopen("three_squirrels.in","r",stdin);freopen("three_squirrels.out","w",stdout);chul();Cu;
using namespace std;
const int maxn=100010;
int f[maxn],head[maxn],tim,p=1000000000+7;
struct op{
int to,next;
}r[maxn*10];
int dfs(int x){
if(f[x]!=-1)return f[x];
f[x]=0;
int y;
for(int i=head[x];i;i=r[i].next){
y=r[i].to;
f[x]=(f[x]+dfs(y))%p;
}
return f[x];
}
void insert(int fr,int to){
tim++;
r[tim].to=to;
r[tim].next=head[fr];
head[fr]=tim;
}
void chul(){
memset(f,-1,sizeof(f));
f[0]=1;
int n,m,x;
scanf("%d",&n);
for(int i=1;i<=n;i++){
scanf("%d",&m);
for(int j=0;j<m;j++){
scanf("%d",&x);
insert(i,x);
}
}
printf("%d\n",dfs(n));
}
int main(){
Begin;
}