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

NYOJ 20-吝啬的国度

时间:2018-05-12 22:35:36      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:names   mes   return   tac   turn   bsp   cout   vector   star   

#include<iostream>
#include<cstdio>
#include<string>
#include<cstring>
#include<vector>
#include<map>
#include<queue>
#include<stack>
#include<algorithm>
#include<cmath>
#define long long LL
using namespace std;
vector<int>a[100005];
int pre[100005];
void dfs(int start,int m)
{
for(int i=0;i<a[start].size();i++)
{
if(pre[a[start][i]]!=0)
continue;

pre[a[start][i]]=start;
dfs(a[start][i],m);

}

}


int main()
{

int n;
cin>>n;
while(n--)
{
int m,start;
memset(a,0,sizeof(a));
memset(pre,0,sizeof(pre));
cin>>m>>start;

pre[start]=-1;//它本身前缀为-1

int k1,k2;
for(int i=0;i<m-1;i++)
{
cin>>k1>>k2;
a[k1].push_back(k2);
a[k2].push_back(k1);
 }
 
dfs(start,m);  

for(int i=1;i<=m-1;i++)
cout<<pre[i]<<" ";

cout<<pre[m]<<endl;


}
  




return 0;
}

NYOJ 20-吝啬的国度

标签:names   mes   return   tac   turn   bsp   cout   vector   star   

原文地址:https://www.cnblogs.com/koris-yyf/p/9029985.html

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