Codeforces 29D Ant on the Tree 树的遍历 dfs序

题目链接:点击打开链接

题意:

给定n个节点的树

1为根

则此时叶子节点已经确定

最后一行给出叶子节点的顺序

目标:

遍历树并输出路径,要求遍历叶子节点时按照给定叶子节点的先后顺序访问。

思路:

给每个节点加一个优先级。

把最后一个叶子节点到父节点的路径上的点优先级改为1

把倒数第二个叶子节点到父节点的路径上的点优先级改为2

如此每个点就有一个优先级,每个访问儿子节点时先访问优先级大的即可

对于无解的判断:得到的欧拉序列不满足输入的叶子节点顺序即是无解。

#include <cstdio>
#include <cstring>
#include <iostream>
#include <algorithm>
#include <math.h>
#include <set>
#include <vector>
#include <map>
using namespace std;
#define ll int
#define N 310
ll n;
vector<ll>G[N];
int fa[N], du[N];
void dfs(int u,int father){
	fa[u] = father;
	for(int i = 0; i < G[u].size(); i++) {
		int v = G[u][i]; if(v==father)continue;
		dfs(v,u);
	}
}
int val[N], Stack[N<<1], top;
bool cmp(int a,int b) {
	return val[a]>val[b];
}
void work(int u, int father) {
	Stack[top++] = u;
	vector<int>son;
	son.clear();
	for(int i = 0; i < G[u].size(); i++){
		int v = G[u][i]; if(v==father)continue;
		son.push_back(v);
	}
	sort(son.begin(), son.end(), cmp);
	for(int i = 0; i < son.size(); i++) {
		work(son[i], u);
		Stack[top++] = u;
	}
}
vector<int>input;
bool ok(){
	int u = 0;
	for(int i = 0; i < top; i++)
		if(Stack[i]==input[u])
		u++;
	return u >= input.size();
}
int main(){
	ll i,j,u,v;
	while(cin>>n){
		input.clear();
		memset(du, 0, sizeof du);
		for(i = 1; i <= n; i++)
			G[i].clear();
		for(i = 1; i < n; i++) {
			scanf("%d %d",&u,&v);
			G[u].push_back(v);
			G[v].push_back(u);
			du[u]++; du[v]++;
		}
		int leaf = 0;
		for(i = 2; i <= n; i++)
			if(du[i]==1)
				leaf++;
		dfs(1,-1);
		for(i = leaf; i; i--) {
			scanf("%d",&u);
			input.push_back(u);
			while(u!=-1){
				val[u] = i;
				u = fa[u];
			}
		}
		top = 0;
		work(1,-1);
		if(ok()) {
		<span style="white-space:pre">	</span>for(i = 0; i < top; i++)
				printf("%d%c",Stack[i],i==top-1?'\n':' ');
		}
		else puts("-1");
	}
	return 0;
}

Codeforces 29D Ant on the Tree 树的遍历 dfs序

时间: 2024-12-23 12:40:47

Codeforces 29D Ant on the Tree 树的遍历 dfs序的相关文章

CodeForces 29D Ant on the Tree

给一颗树,1为根,要求遍历树上所有点,给出叶子结点的访问顺序,限制每条边至多访问两次. 首先这是一棵树,那么两点之间的路线是确定的,所以我第一遍dfs预处理出从根节点到每个叶子的路径保存,以便后面输出. 那么就按照题目要求输出叶子结点的顺序依次输出,然后从一个叶子到下一个叶子的时候,从他们的最近公共祖先转折,所以我还预处理了相邻两个叶子结点的LCA. #include <iostream> #include <cstdlib> #include <cstring> #i

codeforces 343D Water Tree 树链剖分 dfs序 线段树 set

题目链接 这道题主要是要考虑到同一棵子树中dfs序是连续的 然后我就直接上树剖了... 1 #include<bits/stdc++.h> 2 using namespace std; 3 const int MAXN=600005; 4 5 struct Node 6 { 7 int l,r; 8 int value; 9 void init() 10 { 11 l=r=value=0; 12 } 13 }tree[4*MAXN]; 14 vector<int>nei[MAXN]

E - Apple Tree(树状数组+DFS序)

There is an apple tree outside of kaka's house. Every autumn, a lot of apples will grow in the tree. Kaka likes apple very much, so he has been carefully nurturing the big apple tree. The tree has N forks which are connected by branches. Kaka numbers

【BZOJ】2434: [Noi2011]阿狸的打字机 AC自动机+树状数组+DFS序

[题意]阿狸喜欢收藏各种稀奇古怪的东西,最近他淘到一台老式的打字机.打字机上只有28个按键,分别印有26个小写英文字母和'B'.'P'两个字母. 经阿狸研究发现,这个打字机是这样工作的: l 输入小写字母,打字机的一个凹槽中会加入这个字母(这个字母加在凹槽的最后). l 按一下印有'B'的按键,打字机凹槽中最后一个字母会消失. l 按一下印有'P'的按键,打字机会在纸上打印出凹槽中现有的所有字母并换行,但凹槽中的字母不会消失. 我们把纸上打印出来的字符串从1开始顺序编号,一直到n.打字机有一个非

luogu SP8093 后缀自动机+树状数组+dfs序

这题解法很多,简单说几个: 1. 线段树合并,时间复杂度是 $O(nlog^2n)$ 的. 2. 暴力跳 $fail,$ 时间复杂度 $O(n\sqrt n),$ 比较暴力. 3. 建立后缀树后在 $dfs$ 序上数点,时间复杂度为 $O(nlogn),$ 十分优秀. Code: #include <bits/stdc++.h> #define N 200007 #define setIO(s) freopen(s".in","r",stdin) , f

UCF Local Programming Contest 2018 E题(树状数组+dfs序)

如果这道题没有一个限制,那么就是一道树状数组+dfs序的裸题 第一个请求或许会带来困惑,导致想要动态建树,如果真的动态修改树,那么dfs序必定会改变,很难维护,并且数据很大,暴力应该会T 所以不妨先把全部的节点建好,这样只需要求一次dfs序,而对于第一种操作 我们只需要再那个位置减去在他之前的dfs序的bouns求和,并在这个的后一个位置+回来,这样就有这个点被修改,并且成为了一个新点,等同于要求的操作 #include<iostream> #include<cstdio> #in

Codeforces 375D Tree and Queries(DFS序+莫队+树状数组)

题目链接  Tree and Queries 题目大意  给出一棵树和每个节点的颜色.每次询问vj, kj 你需要回答在以vj为根的子树中满足条件的的颜色数目, 条件:具有该颜色的节点数量至少为kj. (莫队居然可以过) 首先转DFS序,这样就变成了区间查询. 然后直接套用莫队,求出每次询问状态下的t[],t[k]表示当前区间内拥有k个节点的颜色数量. 然后统计t[k] + t[k + 1], ..., t[MAX]即可,这个过程用树状数组维护. #include <bits/stdc++.h>

HDU5293(SummerTrainingDay13-B Tree DP + 树状数组 + dfs序)

Tree chain problem Time Limit: 6000/3000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others)Total Submission(s): 1798    Accepted Submission(s): 585 Problem Description Coco has a tree, whose vertices are conveniently labeled by 1,2,-,n.The

CodeForces 547E:Mike and Friends(AC自动机+DFS序+主席树)

What-The-Fatherland is a strange country! All phone numbers there are strings consisting of lowercase English letters. What is double strange that a phone number can be associated with several bears! In that country there is a rock band called CF con