贪心——Shortest path of the king

本文探讨了国际象棋中王从一个位置移动到另一个指定位置所需的最少步数问题,并提供了两种不同的C/C++实现方案来解决这个问题。
 Shortest path of the king
time limit per test
 1 second
memory limit per test
 64 megabytes
input
 standard input
output
 standard output

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.

Examples
input
a8
h1
output
7
RD
RD
RD
RD
RD
RD
RD

 自己代码

 1 #include<stdio.h>
 2 int adf(int x)
 3 {
 4     return x>0?x:-x;
 5 }
 6 int asf(int x,int y)
 7 {
 8     return x>y?x:y;
 9 }
10 int main()
11 {
12     char s[5];
13     int x1,y1,x2,y2;
14     int x,y,xp,yp,c;
15     scanf("%s",s);
16     x1=s[0]-'a'+1;
17     y1=s[1]-'0';
18     scanf("%s",s);
19     x2=s[0]-'a'+1;
20     y2=s[1]-'0';
21     xp=x2-x1;
22     yp=y2-y1;
23     x=adf(xp);
24     y=adf(yp);
25     c=asf(x,y);
26     printf("%d\n",c);
27     while(c--)
28     {
29         if(xp>0)
30             printf("R"),xp--;
31         if(xp<0)
32             printf("L"),xp++;
33         if(yp>0)
34             printf("U"),yp--;
35         if(yp<0)
36             printf("D"),yp++;
37         printf("\n");
38     }
39     return 0;
40 }

参考代码

 1 #include <iostream>
 2 #include <stdio.h>
 3 using namespace std;
 4 
 5 char s[5];
 6 
 7 int ab(int x)
 8 {
 9     if(x<0)
10         return -x;
11     return x;
12 }
13 
14 int main()
15 {
16     int c1,r1,c2,r2;
17     //printf("%c",s[0]);
18     scanf("%s",s);
19     c1=s[0]-'a'+1;
20     r1=s[1]-'0';
21     scanf("%s",s);
22     c2=s[0]-'a'+1;
23     r2=s[1]-'0';
24     int cc=c1-c2,rr=r1-r2;
25     int t=ab(rr);
26     if(ab(cc)>ab(rr))
27         t=ab(cc);
28     printf("%d\n",t);
29     while(t--)
30     {
31         if(cc>0)
32             printf("L"),cc--;
33         if(cc<0)
34             printf("R"),cc++;
35         if(rr>0)
36             printf("D"),rr--;
37         if(rr<0)
38             printf("U"),rr++;
39         printf("\n");
40     }
41     return 0;
42 }

 

转载于:https://www.cnblogs.com/2016024291-/p/6945744.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值