记录编号 326959 评测结果 AAAAWWWWWW
题目名称 森林大礼包 最终得分 40
用户昵称 Gravatarcounter2k 是否通过 未通过
代码语言 C++ 运行时间 4.450 s
提交时间 2016-10-21 18:07:52 内存使用 0.31 MiB
显示代码纯文本
#include<iostream>
#include<cstdio>
using namespace std;
int main()
{
	freopen("three_squirrels.in","r",stdin);
	freopen("three_squirrels.out","w",stdout);
	int n;
	cin>>n;
	long long h[n+1];
	for(int i=1;i<=n;i++)
		h[i]=0;
	h[0]=1;
	int k;
	for(int i=1;i<=n;i++)
	{
		cin>>k;
		long long  flag;
		for(int j=1;j<=k;j++)
		{
			cin>>flag;
			h[i]=h[i]+h[flag];
		}
	}
	h[n]=h[n]%(1000000000+7);
	cout<<h[n];
	fclose(stdin);
	fclose(stdout);
	return 0;
}