ICode9

精准搜索请尝试: 精确搜索
首页 > 其他分享> 文章详细

CF3A Shortest path of the king

2019-02-06 23:40:49  阅读:330  来源: 互联网

标签:king square moves RD path include Shortest he


The king is left alone on the chessboard. In spite of this loneliness, he doesn't lose heart, because he has business of national importance. For example, he has to pay an official visit to square t.
As the king is not in habit of wasting his time, he wants to get from his current position s to square t in
the least number of moves. Help him to do this.


In one move the king can get to the square that has a common side or a common vertex with the square the king is currently in (generally there are 8 different squares he can move to).

 

Input

The first line contains the chessboard coordinates of square s, the second line — of square t.

Chessboard coordinates consist of two characters, the first one is a lowercase Latin letter (from a to h),
the second one is a digit from 1to 8.

 

Output

In the first line print n — minimum number of the king's moves. Then in n lines
print the moves themselves. Each move is described with one of the 8: L, R, U, D, LU, LD, RU or RD.

L, R, U, D stand
respectively for moves left, right, up and down (according to the picture), and 2-letter combinations stand for diagonal moves. If the answer is not unique, print any of them.

 题目大意:从起点走到终点,求最短距离,而且写出最短距离的路径是什么样的:

 样例输入:

  a8 h1

 样例输出:

  7 RD RD RD RD RD RD RD

 

 分析:贪心模拟,由题意知道最多有八个可以移动的方向:L,R,U,D,LU,LD,RU,RD,那么当前位置与终点不同就要优先走斜线,模拟一下即可知道最短路径的长度为起点与终点横坐标差的绝对值与纵坐标差的绝对值中较大的那一个。由于走斜线的格式均是L或R+U或D,输出移动动作时可以将走斜线分解为横坐标走一步加纵坐标走一步。

 1 #include<iostream>
 2 #include<algorithm>
 3 #include<cstdio>
 4 #include<cstring>
 5 #include<cstdlib>
 6 using namespace std;
 7 string s1,s2;//记录始末位置坐标
 8 
 9 int main(){
10     char cx,cy;
11     cin>>s1>>s2;
12     int x=s1[0]-s2[0];
13     int y=s1[1]-s2[1];
14     cx=x<0?'R':'L';
15     cy=y<0?'U':'D';
16 
17     if(x<0){
18         x=-x;
19     }
20     if(y<0){
21         y=-y;
22     }
23     printf("%d\n",x>y?x:y);
24 
25     for( ;x||y; putchar('\n')){
26         if(x){
27             x--;
28             putchar(cx);
29         }
30         if(y){
31             y--;
32             putchar(cy);
33         }
34     }
35 
36     return 0;
37 }

 

标签:king,square,moves,RD,path,include,Shortest,he
来源: https://www.cnblogs.com/Bravewtz/p/10354273.html

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有