比赛 |
图的简单问题 |
评测结果 |
WAWWWWAWWW |
题目名称 |
信息传递 |
最终得分 |
20 |
用户昵称 |
Regnig Etalsnart |
运行时间 |
0.179 s |
代码语言 |
C++ |
内存使用 |
3.36 MiB |
提交时间 |
2017-05-14 20:50:12 |
显示代码纯文本
#include<cstdio>
#include<algorithm>
#include<cstring>
#include<vector>
using namespace std;
const int maxn=200000+10;
int n,t[maxn],ans=0,i,j;
vector<int>v[maxn];
int main()
{
freopen("2015message.in","r",stdin);freopen("2015message.out","w",stdout);
scanf("%d",&n);
for(i=1;i<=n;i++)
{
scanf("%d",&t[i]);
v[i].push_back(i);
}
for(i=1;i<=n;i++)
{
ans++;
for(j=0;j<v[i].size();j++)
{
v[t[i]].push_back(v[i][j]);
/*?*/ if(v[t[i]].size()==v[i][j])
{
printf("%d",ans+1);
return 0;
}
}
}
}