记录编号 |
326286 |
评测结果 |
AAAAAAAAAA |
题目名称 |
森林大礼包 |
最终得分 |
100 |
用户昵称 |
派特三石 |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.934 s |
提交时间 |
2016-10-21 07:13:28 |
内存使用 |
8.26 MiB |
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<cstring>
#include<cstdlib>
#define pa system("pause")
using namespace std;
const int maxn=101000;
typedef long long LL;
struct edge
{
int to,next;
}e[maxn*10];
int n,m,len,head[maxn],mod=1000000007;LL f[maxn];
void insert(int x,int y)
{
e[++len].to=y;e[len].next=head[x];head[x]=len;
}
LL dfs(int x)
{
if(x==0)return 1;
if(f[x])return f[x];
LL tot=0;
for(int i=head[x];i;i=e[i].next)
{
int k=e[i].to;
f[x]+=dfs(k);f[x]%=mod;
}
return f[x]%mod;
}
int main()
{
freopen("three_squirrels.in","r",stdin);
freopen("three_squirrels.out","w",stdout);
scanf("%d",&n);
for(int i=1;i<=n;++i)
{
int x,y;
scanf("%d",&x);
for(int j=1;j<=x;++j)
{
scanf("%d",&y);
insert(i,y);
}
}
printf("%lld\n",dfs(n));
fclose(stdin);
fclose(stdout);
return 0;
}