记录编号 326293 评测结果 AAAAAAAAAA
题目名称 森林大礼包 最终得分 100
用户昵称 GravatarRespawn 是否通过 通过
代码语言 C++ 运行时间 0.959 s
提交时间 2016-10-21 07:15:44 内存使用 6.97 MiB
显示代码纯文本
#include<cstring>
#include<cstdio>
#include<algorithm>
#include<iostream>
using namespace std;
const int maxn=100010;
int head[maxn],n,len,f[maxn],mod=1000000007;
struct Edge
{
	int to,next;
}e[maxn*10];
int memory(int);
void Insert(int,int);
int main()
{
	freopen("three_squirrels.in","r",stdin);
	freopen("three_squirrels.out","w",stdout);
	memset(head,-1,sizeof(head));
	scanf("%d",&n);f[0]=1;
	for(int i=1;i<=n;i++)
	{
		int num;scanf("%d",&num);
		for(int j=1;j<=num;j++)
		{
			int x;scanf("%d",&x);
			Insert(i,x);
		}
	}
	int ans=memory(n);
	printf("%d\n",ans);
	fclose(stdin);
	fclose(stdout);
	//system("pause");
	return 0;
}
void Insert(int x,int y)
{
	len++;e[len].to=y;
	e[len].next=head[x];head[x]=len;
}
int memory(int x)
{
	if(f[x])return f[x];
	for(int i=head[x];i!=-1;i=e[i].next)
	{
		int j=e[i].to;
		f[x]+=memory(j);f[x]%=mod;
	}
	return f[x];
}