记录编号 |
326312 |
评测结果 |
AAAAAAAAAA |
题目名称 |
森林大礼包 |
最终得分 |
100 |
用户昵称 |
AntiLeaf |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
1.357 s |
提交时间 |
2016-10-21 07:19:51 |
内存使用 |
2.69 MiB |
显示代码纯文本
#include<cstdio>
#include<cstring>
#include<algorithm>
#include<vector>
using namespace std;
const int maxn=100010;
const long long p=1000000007ll;
int dfs(int);
int n,cnt[maxn],x;
long long f[maxn];
bool vis[maxn]={false};
vector<int>a[maxn];
int main(){
#define MINE
#ifdef MINE
freopen("three_squirrels.in","r",stdin);
freopen("three_squirrels.out","w",stdout);
#endif
scanf("%d",&n);
for(int i=1;i<=n;i++){
scanf("%d",&cnt[i]);
for(int j=0;j<cnt[i];j++){
scanf("%d",&x);
a[i].push_back(x);
}
}
printf("%lld",dfs(n)%p);
#ifndef MINE
printf("\n-------------------------DONE-------------------------\n");
for(;;);
#endif
return 0;
}
int dfs(int x){
if(!x)return 1;
if(vis[x])return f[x];
vis[x]=true;
f[x]=0ll;
for(int i=0;i<cnt[x];i++)f[x]=(f[x]+dfs(a[x][i]))%p;
return f[x];
}