比赛 |
NOIP模拟赛by mzx Day2 |
评测结果 |
AAAAAAAAAA |
题目名称 |
森林大礼包 |
最终得分 |
100 |
用户昵称 |
liu_runda |
运行时间 |
0.987 s |
代码语言 |
C++ |
内存使用 |
1.62 MiB |
提交时间 |
2016-10-20 18:48:48 |
显示代码纯文本
#include<cstdio>
#include<vector>
using namespace std;
const int maxn=100005,mod=1000000007;
int f[maxn];
bool vis[maxn];
int sz[maxn];
vector<int> content[maxn];
int dp(int x){
if(vis[x])return f[x];
f[x]=0;
for(int i=0;i<sz[x];++i){
f[x]=(f[x]+dp(content[x][i]))%mod;
}
vis[x]=true;return f[x];
}
int main(){
freopen("three_squirrels.in","r",stdin);
freopen("three_squirrels.out","w",stdout);
int n;scanf("%d",&n);
int x;
for(int i=1;i<=n;++i){
scanf("%d",&sz[i]);
for(int j=1;j<=sz[i];++j){
scanf("%d",&x);
content[i].push_back(x);
}
}
f[0]=1;vis[0]=true;
printf("%d\n",dp(n));
fclose(stdin);fclose(stdout);
return 0;
}