码迷,mamicode.com
首页 > 其他好文 > 详细

PTA 7-2 小字辈 (25分)

时间:2020-03-28 10:39:22      阅读:380      评论:0      收藏:0      [点我收藏+]

标签:const   scanf   using   iostream   nod   ons   ==   ace   print   

这题竟然没有卡时间,有需要可以参考一下。

#include<cstdio>
#include<cstring>
#include<string>
#include<iostream>
#include<vector>
#include<algorithm>
using namespace std;

const int N = 100001;
struct Node
{
	vector<int> hz;
	int bf;
	int fm;
}a[N];

int ans[100001]; int top = -1;
int xam = -1;
void bff(int i, int n)
{
	a[i].bf = n;
	if (n > xam)xam = n;
	for (int j = 0; j < a[i].hz.size(); j++)
	{
		bff(a[i].hz[j], n + 1);
	}
}


int main()
{
	int n, temp;
	cin >> n;
	for (int i = 1; i <= n; i++)
	{
		a[i].fm = -2;
		a[i].bf = -2;
	}
	int s;
	for (int i = 1; i <= n; i++)
	{
		scanf("%d", &temp);
		a[i].fm = temp;
		if (temp == -1) s = i;
		else
			a[temp].hz.push_back( i);
	}

	bff(s, 1);
	cout << xam << endl;
	for (int i = 1; i <= n; i++)
	{
		if (a[i].bf == xam)
		{
			ans[++top] = i;
		}
	}
	for (int i = 0; i < top; i++)
	{
		printf("%d ", ans[i]);
	}
	printf("%d", ans[top]);
	return 0;
}

PTA 7-2 小字辈 (25分)

标签:const   scanf   using   iostream   nod   ons   ==   ace   print   

原文地址:https://www.cnblogs.com/kreamyu/p/12585889.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!