F - Elven Postman

2023-10-21 20:20
文章标签 postman elven

本文主要是介绍F - 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 qq representing the number of mails to be sent. After that, there will be qq integers x1,...,xqx1,...,xq indicating the destination room number of each mail.

Output

For 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

EWE
EEEEE

题意:

给你一个T,代表有T组测试数据,给你一个n,代表有n个字母,让你构成一个二叉搜索树,然后给你一个m,后面一行有m个数字,让你查找这些数字的位置,输出路径,在二叉搜索树中如果是向左输出“E”,否则输出“W”,注意,如果和根节点相等就不输出,所以第二行中才会没有任何输出,做题的时候纠结了半天才看懂题意。

思路:

首先我们要建立一个二叉搜索树,使用链表会简单一点,这是我第一次使用链表,纪念一下吧。

使用链表建立二叉搜索树,把每个数字按照二叉搜索树的特点依次插入,然后开始搜索要查询的数字,别的也没有什么可以说的了。

代码如下:

#include<stdio.h>
#include<string.h>int t,n,m,k,a,b;struct node
{int date;struct node *left;//链表中下一个左子树的位置;struct node *right;//链表中下一个右子树的位置;
};void insert(node * &root,int aa)
{if(root==NULL)//如果找到了空位置就把数字插入;{root=new node;//将叶子节点拓展一个新的拥有左右子树的节点;root->date=aa;//存进去;root->left=NULL;//左右子树应该为空;root->right=NULL;}if(root->date<aa)//根据二叉搜索树的概念,大的在右;insert(root->right,aa);if(root->date>aa)//晓得在左;insert(root->left,aa);
}void find(node * &root,int bb)//查找;
{if(root->date<bb)//大的向右;{printf("W");find(root->right,bb);}if(root->date>bb)//小的向左;{printf("E");find(root->left,bb);}
}int main()
{scanf("%d",&t);while(t--){scanf("%d",&n);int i;node *root=NULL;//建立一个根节点;for(i=0; i<n; i++){scanf("%d",&a);insert(root,a);}scanf("%d",&m);for(i=0; i<m; i++){scanf("%d",&b);find(root,b);printf("\n");}}return 0;
}

 

这篇关于F - Elven Postman的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/256745

相关文章

【轻松上手postman】入门篇:如果根据接口文档写postman接口用例

在我们平时的测试工作中除了最基本的网页测试外,也会遇到没有页面但需要验证内部逻辑正确性的接口测试任务,在遇到没有网页的测试任务时,我们就要使用到接口测试工具来模拟对程序代码触发。 在接到接口测试任务时,一般都会拿到接口需求文档,没接触过接口测试的人看到接口文档正常反应一脸闷🤣不知如何下手怎么开始测试😓,下面我就来讲讲如何将接口文档上的一个个接口转换成postman用例 首先需要安装

postman基础教程-04run

Postman 工具自带了Runner功能,用于批量运行脚本。在运行时还可以使用外部的CSV或者json文件来指定数据 左侧collections下保存的测试集,点击小三角,点击run按钮 在runner页面中如下图,图1 是可以选择我们要运行的项目,图2是选择我们运行的环境,图3是运行次数和延迟时间,图4是选择的外部测试数据如csv 点击run 可以看到跑完了项目中所有的接口

postman基础教程-02环境变量

编写的API往往需要在多个环境下执行,而Postman 提供了两种类型的变量:环境变量和全局变量,从而很好的解决了这个问题。 环境变量有效范围仅仅在于你所选取的环境,全局变量对所有的环境都试用 api可能需要在拨通的环境中运行,所以api请求的服务器地址不能写死,希望是可以配置的,创建环境变量有多种方式。 环境变量 1.手工预先创建环境变量 点击小眼睛按钮即可创建环境变量,第一个是环境变量

(postman)接口测试进阶实战

1.内置和自定义的动态参数 内置的动态参数有哪些? ---{{$}}--是内置动态参数的标志 //自定义的动态参数 此处date.now()的作用就相当于上面的timestamp 2.业务闭环及文件接口测试 返回的url地址可以在网页中查询得到。 3. 常规断言,动态参数断言,全局断言 //断言主要是以上六个 断言通过!!!

(Postman)接口测试基础应用

目录 ​编辑 1.简介与分类 2.接口测试流程及用例设计 3. 实战接口介绍 4.postman的简介,安装,注册 5.get请求和响应页签详解 6. 问题​编辑 1.环境变量和全局变量:globals--全局变量 2.接口关联 1.简介与分类 1.接口测试是测试系统组件接口之间的一种测试。 2.接口测试的分类: 测试外部接口:测试被测系统和外部系统之间

Android Retrofit注解和postman各种参数类型的对应关系

一、Get请求 没啥区别都是拼在url串上 二、Post请求 本文重点         1、form-urlencoded 方式             postman 是这个样子                          retrofit是这个样子                后台收到是这个样子   Content-Type: application/x-www-fo

Postman2testlink 通过Postman调用Testlink API编写测试用例

Postman2Testlink recommend: China-Gitee,Other-Github 名称版本nodejs大于8.17.0testlink大于1.9.17   API 说明文档   FAQ 常见问题   一、安装 npm install 二、启动服务 node test/server.js 三、示例 工程目录下有postman客户端脚本示例,可以直接导

postman接口压力步骤分享

刚部署一台服务器,现有表90万记录,需要进行下压力测试 postman安装略过 创建文件夹 创建接口存于新建的文件夹 点击runner进行测试

postman代码转换为python代码

在postman中,post接口,只要变量在params中,那么python中,data或者json可为空,在url中传入各个变量的值即可

postman学习笔记:从入门到精通

postman入门到精通 一、postman下载安装与更换主题1、下载与安装2、更换主题(Themes) 二、页面详解1、顶部工具栏2、左侧栏3、中部栏3.1 请求部分页签介绍3.2 响应部分页签介绍 三、管理用例四、设置环境变量和全局变量1、添加环境变量2、添加全局变量 五、发送请求1、发送一个get请求2、发送一个post请求 六、接口关联1、JSON提取器(响应body中提取)2、正