宇航员

Description
问题描述:
  宇航员在太空中迷失了方向,在他的起始位置现在建立一个虚拟xyz坐标系,称为绝对坐标系,宇航员正面的方向为x轴正方向,头顶方向为z轴正方向,则宇航员的初始状态如下图所示:

现对六个方向分别标号,x,y,z正方向分别为0,1,2,负方向分别为3,4,5;称它们为绝对方向。宇航员在宇宙中只沿着与绝对坐标系xyz轴平行的方向行走,但是他不知道自己当前绝对坐标和自己面向的绝对方向。

任务描述:
  请根据宇航员对自己在相对方向上移动的描述确定宇航员最终的绝对坐标和面向的绝对方向。对在相对方向上移动的描述及意义如下:
forward x  向前走x米。
back x 先转向后,再走x米。
left x 先转向左,再走x米。
right x 先转向右,再走x米。
up x 先面向上,再走x米。
down x 先面向下,再走x米。
其中向上和向下如下图所示:

Input
第一行一个正整数m,表示测试数据的组数。每组测试数据第一行是一个正整数n(1<=n<=10000)表示宇航员行走的次数,下面n行每行输入一次相对行走,格式如上所述,其中( 1 <= x <= 10000 为正整数)。
Output
对于每组输入数据输出一行,x y z p, 中间用空格隔开,x y z是宇航员的位置的绝对坐标,p是宇航员面向的绝对方向编号(0<=p <=5)。
Sample Input
1
6
left 10
right 11
up 12
down 13
forward 14
back 15
Sample Output
23 -10 12 3

思路:
同大多数人一样,开始只定义了一个方向,写到一半的时候有点懵逼,卧槽,上下转向的时候号麻烦啊,好像有点不对,卧槽,真的不对,懵逼。
然后看看别人的思路,嗯,定义了三个方向,head,face,left
久闻这道题大名。。。果然还是要做了才知道

#include <iostream>
#include <cstdio>
#include <string>
#include <cstring>
using namespace std;

string action;
int main()
{
    int n;
    cin >> n;
    while (n--)
    {
        int number, dirction = 0;
        cin >> number;

        int x = 0, y = 0, z = 0;
        int distance, face = 0, left = 4, head = 2, temp;
        while (number --)
        {
            cin >> action;
            cin >> distance;
            if(action == "back"){
                left = (left+3)%6;
                face = (face+3)%6;
            }else if(action == "left"){
                temp = face;
                face = left;
                left = (temp+3)%6;
            }else if(action == "right"){
                temp = left;
                left = face;
                face = (temp+3)%6;
            }else if(action == "up"){
                temp = face;
                face = head;
                head = (temp + 3)%6;
            }else if(action == "down"){
                temp = head;
                head = face;
                face = (temp + 3)%6;
            }

            if(face == 0){
                x += distance;
            }else if(face == 1){
                y += distance;
            }else if(face == 2){
                z += distance;
            }else if(face == 3){
                x -= distance;
            }else if(face == 4){
                y -= distance;
            }else if(face == 5){
                z -= distance;
            }
        }
        printf("%d %d %d %d\n", x, y, z, face);
    }
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值