Elven Postman

  Elves are very peculiar creatures. As we all know, they can live for a very long time and their magical prowess are not something to be taken lightly. Also, they live on trees. However, there is something about them you may not know. Although delivering stuffs through magical teleportation is extremely convenient (much like emails). They still sometimes prefer other more “traditional” methods.

  So, as a elven postman, it is crucial to understand how to deliver the mail to the correct room of the tree. The elven tree always branches into no more than two paths upon intersection, either in the east direction or the west. It coincidentally looks awfully like a binary tree we human computer scientist know. Not only that, when numbering the rooms, they always number the room number from the east-most position to the west. For rooms in the east are usually more preferable and more expensive due to they having the privilege to see the sunrise, which matters a lot in elven culture.

  Anyways, the elves usually wrote down all the rooms in a sequence at the root of the tree so that the postman may know how to deliver the mail. The sequence is written as follows, it will go straight to visit the east-most room and write down every room it encountered along the way. After the first room is reached, it will then go to the next unvisited east-most room, writing down every unvisited room on the way as well until all rooms are visited.

  Your task is to determine how to reach a certain room given the sequence written on the root.

  For instance, the sequence 2, 1, 4, 3 would be written on the root of the following tree.

Input

  First you are given an integer T(T≤10)T(T≤10)indicating the number of test cases.

  For each test case, there is a number n(n≤1000)n(n≤1000)on a line representing the number of rooms in this tree. nn integers representing the sequence written at the root follow, respectively a1,...,ana1,...,an where a1,...,an∈{1,...,n}a1,...,an∈{1,...,n}.

  On the next line, there is a number qqrepresenting the number of mails to be sent. After that, there will be qq integers x1,...,xqx1,...,xqindicating the destination room number of each mail.OutputFor each query, output a sequence of move (EE or WW) the postman needs to make to deliver the mail. For that EE means that the postman should move up the eastern branch and WW the western one. If the destination is on the root, just output a blank line would suffice.

  Note that for simplicity, we assume the postman always starts from the root regardless of the room he had just visited.Sample

Input

  2
  4
  2 1 4 3
  3
  1 2 3
  6
  6 5 4 3 2 1
  1
  1

Sample Output

  E

  WE
  EEEEE

解题思路:
  本题有多组数据,每组数据包含第一行结点数量,第二行结点权值,第三行目标点数量,第行目标点权值要求建立二叉搜索树后,在树中查找目标点输出查找路径,查找左子树输出E,查找右子树输出W,若目标点为根结点输出一个空行。

样例解析:
  2         //测试组数
  4         //二叉搜索树结点数量(第一组)
  2 1 4 3          //二叉搜索树结点权值(第一组)     //所建树前序遍历2 1 4 3
  3           //目标点数量(第一组)
  1 2 3       //目标点权值(第一组)         //输出1:E 2:空行 3:WE
  6          //二叉搜索树结点数量(第二组)
  6 5 4 3 2 1     //二叉搜索树结点权值(第二组)     //所建树前序遍历6 5 4 3 2 1
  1         //目标点数量(第二组)
  1         //目标点权值(第二组)         //输出1:EEEEE

 #include <bits/stdc++.h>
using namespace std;
typedef int dataType;
vector<int> arrayn;
vector<int> pattern;
struct node{
dataType data;
node *leftChild;
node *rightChild;
node(){
data = ;
leftChild = NULL;
rightChild = NULL;
}
};
void searchBST(node *root, dataType x){ //查找
if(root == NULL){ //找到空位置查找失败返回
return;
}
if(root->data == x){ //找到目标点换行
printf("\n");
}else if(root->data > x){ //x比根结点数据域小 查找左子树输出E
printf("E");
searchBST(root->leftChild, x); //x比根结点数据域大 查找右子树输出W
}else if(root->data < x){
printf("W");
searchBST(root->rightChild, x);
}
}
void insertBST(node *&root, dataType x){ //插入
if(root == NULL){ //找到空位置即使插入位置
root = new node(); //新建结点权值为x
root->data = x;
return;
}
if(x == root->data){ //要插入结点已存在直接返回
return;
}
else if(root->data > x){ //x比根结点数据域小 需要插在左子树
insertBST(root->leftChild, x);
}
else if(root->data < x){ //x比根结点数据域大 需要插在右子树
insertBST(root->rightChild, x);
}
}
node *createBST(){ //以arrayn中记录的结点建树
node *root = NULL;
for(vector<int>::iterator it = arrayn.begin(); it != arrayn.end(); it++){
insertBST(root, *it);
}
return root;
}
/*void preorder(node *root){
if(root == NULL)
return;
printf("%d", root->data);
preorder(root->leftChild);
preorder(root->rightChild);
}*/
int main()
{
int t; //测试组数
while(scanf("%d", &t) != EOF){
int n; //二叉搜索树结点数量和目标点数量
while(t--){
arrayn.clear(); //清空储存结点权值的容器
scanf("%d", &n); //输入结点数
int temp;
for(int i = ; i < n; i++){
scanf("%d", &temp); //输入权值
arrayn.push_back(temp); //将权值储存在arrayn中
}
node *root = NULL;
root = createBST(); //建树
//preorder(rood);
scanf("%d", &n); //输入目标点数量
for(int i = ; i < n; i++){
scanf("%d", &temp); //输入目标点权值
searchBST(root, temp); //查找并输出路径
}
}
}
return ;
}

HDU 5444 Elven Postman (2015 ACM/ICPC Asia Regional Changchun Online)的更多相关文章

  1. (二叉树)Elven Postman -- HDU -- 54444(2015 ACM/ICPC Asia Regional Changchun Online)

    http://acm.hdu.edu.cn/showproblem.php?pid=5444 Elven Postman Time Limit: 1500/1000 MS (Java/Others)  ...

  2. (并查集)Travel -- hdu -- 5441(2015 ACM/ICPC Asia Regional Changchun Online )

    http://acm.hdu.edu.cn/showproblem.php?pid=5441 Travel Time Limit: 1500/1000 MS (Java/Others)    Memo ...

  3. (线段树 区间查询)The Water Problem -- hdu -- 5443 (2015 ACM/ICPC Asia Regional Changchun Online)

    链接: http://acm.hdu.edu.cn/showproblem.php?pid=5443 The Water Problem Time Limit: 1500/1000 MS (Java/ ...

  4. HDU 5458 Stability(双连通分量+LCA+并查集+树状数组)(2015 ACM/ICPC Asia Regional Shenyang Online)

    题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=5458 Problem Description Given an undirected connecte ...

  5. (字符串处理)Fang Fang -- hdu -- 5455 (2015 ACM/ICPC Asia Regional Shenyang Online)

    链接: http://acm.hdu.edu.cn/showproblem.php?pid=5455 Fang Fang Time Limit: 1500/1000 MS (Java/Others)  ...

  6. hdu 5877 线段树(2016 ACM/ICPC Asia Regional Dalian Online)

    Weak Pair Time Limit: 4000/2000 MS (Java/Others)    Memory Limit: 262144/262144 K (Java/Others)Total ...

  7. hdu 5444 Elven Postman(二叉树)——2015 ACM/ICPC Asia Regional Changchun Online

    Problem Description Elves are very peculiar creatures. As we all know, they can live for a very long ...

  8. 2015 ACM/ICPC Asia Regional Changchun Online HDU 5444 Elven Postman【二叉排序树的建树和遍历查找】

    Elven Postman Time Limit: 1500/1000 MS (Java/Others)    Memory Limit: 131072/131072 K (Java/Others)T ...

  9. 2015 ACM/ICPC Asia Regional Changchun Online Pro 1008 Elven Postman (BIT,dfs)

    Elven Postman Time Limit: 1500/1000 MS (Java/Others)    Memory Limit: 131072/131072 K (Java/Others)T ...

随机推荐

  1. mysql快速插入大数据

    说的是插入数据,这个倒像是载入数据. 上一篇,是按照插入数据来写的,就是insert into,当时插入一万条实在是太慢了,大概是286734毫秒. insert into table values, ...

  2. HTML5、CSS3与响应式Web设计入门(2)

    HTML5的宽泛含义开拓了Web开发的视野,增加了开发方案的多样性,同时也带给很多Web开发者不小的困惑,就是HTML5在涉及到Web某个应用领 域的开发时,到底代表了什么?本篇文章的目的就在于跟大伙 ...

  3. sql server 关于表中只增标识问题

    由于我们系统时间用的过长,数据量大,设计是采用自增ID 我们插入数据的时候把ID也写进去,我们可以采用 关闭和开启自增标识 没有关闭的时候 ,提示一下错误,不能修改 set identity_inse ...

  4. OpenStack 业务链networking-sfc介绍 (2) - 底层原理

    原文链接:https://blog.csdn.net/bc_vnetwork/article/details/65630475 1.  SFC底层实现原理 port chain和ovs driver/ ...

  5. django系列3.2--url的别名和反向解析 reverse

    命名URL和反向解析 在网页中某些要提交的地址等,需要改变的时候,此时网页过多,如果一个一个的去改,工作量巨大,这时就可以用到命名url,在html文件的模版中,只写命名,这样当需要我们改变urls. ...

  6. java学习笔记—HttpServletResponse(21)

    public void doGet(HttpServletRequest request, HttpServletResponse response)throws ServletException, ...

  7. 2017.06.04【NOIP提高组】模拟赛B组:

    t1 jzoj3762 过河 路径分段,计算出向上移对答案贡献最大的一段路,再使用堆来维护即可 代码: #include<bits/stdc++.h> using namespace st ...

  8. python基础之循环

    一.while循环 如果条件成立(true),重复执行相同操作,条件不符合,跳出循环 while   循环条件: 循环操作 (1)while循环示例 例:输入王晓明5门课程的考试成绩,计算平均成绩 i ...

  9. FFmpeg工具使用总结

    . 一. FFmpeg是什么? 简单说,FFmpeg就是一个很好的,免费的,开源的视频转换工具.详细说,FFmpeg是一个开源免费跨平台的视频和音频流方案,属于自由软件,采用LGPL或GPL许可证(依 ...

  10. 老男孩Day12作业:RabbitMQ-RPC版主机管理程序

    一.作业需求 1.可以对指定机器异步的执行多个命令 例子: 请输入操作指令>>>:run ipconfig --host 127.0.0.0 in the call     tack ...