比赛 NOIP模拟赛by mzx Day2 评测结果 C
题目名称 森林大礼包 最终得分 0
用户昵称 一颗赛艇 运行时间 0.000 s
代码语言 C++ 内存使用 0.00 MiB
提交时间 2016-10-20 19:53:57
显示代码纯文本
#include<iostream>
#include<algorithm>
#include<cstdio>
#include<cmath>
using namespace std;
const long long maxn=1000000007;
int n,ki;
long long f[100010];
int main()
{
	freopen("three_squirrels.in","r",stdin);
	freopen("three_squirrels.out","w",stdout);
	memset(f,0,sizeof(f));
	f[0]=1;
	cin>>n;
	for(int i=1;i<=n;i++)
	{
		int m;
		cin>>m;
		for(int j=1;j<=m;j++)
		{
			int q;
			cin>>q;
			f[i]=(f[i]+f[q])%maxn;
		}
	}
	cout<<f[n]<<endl;
	fclose(stdin);
	fclose(stdout);
	return 0;
}