比赛 |
NOIP模拟赛by mzx Day2 |
评测结果 |
AAAATTETTT |
题目名称 |
森林大礼包 |
最终得分 |
40 |
用户昵称 |
派特三石 |
运行时间 |
5.265 s |
代码语言 |
C++ |
内存使用 |
2.01 MiB |
提交时间 |
2016-10-20 19:40:45 |
显示代码纯文本
#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<<1];
int n,m,len,head[maxn],mod=1000000007;
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; LL tot=0;
for(int i=head[x];i;i=e[i].next)
{
int k=e[i].to;
tot+=dfs(k);tot%=mod;
}
return tot%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);//insert(y,i);
}
}
printf("%lld\n",dfs(n));
fclose(stdin);
fclose(stdout);
return 0;
}