Thoughtworks公司面试题——MARS ROVERS问题

原题

A squad of robotic rovers are to be landed by NASA on a plateau on Mars.

This plateau, which is curiously rectangular, must be navigated by the rovers so that their on-board cameras can get a complete view of the surrounding terrain to send back to Earth.

A rover's position and location is represented by a combination of x and y co-ordinates and a letter representing one of the four cardinal compass points. The plateau is divided up into a grid to simplify navigation. An example position might be 0, 0, N, which means the rover is in the bottom left corner and facing North.

In order to control a rover, NASA sends a simple string of letters. The possible letters are 'L ', 'R ' and 'M '. 'L ' and 'R ' makes the rover spin 90 degrees left or right respectively, without moving from its current spot.

'M ' means move forward one grid point, and maintain the same heading.

Assume that the square directly North from (x, y) is (x, y+1).

INPUT:

The first line of input is the upper-right coordinates of the plateau, the lower-left coordinates are assumed to be 0,0.

The rest of the input is information pertaining to the rovers that have been deployed. Each rover has two lines of input. The first line gives the rover 's position, and the second line is a series of instructions telling the rover how to explore the plateau.

The position is made up of two integers and a letter separated by spaces, corresponding to the x and y co-ordinates and the rover 's orientation.

Each rover will be finished sequentially, which means that the second rover won 't start to move until the first one has finished moving.

OUTPUT

The output for each rover should be its final co-ordinates and heading.

INPUT AND OUTPUT

Test Input:

5 5

1 2 N

LMLMLMLMM

3 3 E

MMRMMRMRRM

火星探测器

一小队机器人探测器将由NASA送上火星高原,探测器将在这个奇特的矩形高原上行驶。

用它们携带的照相机将周围的全景地势图发回到地球。每个探测器的方向和位置将由一个x,y系坐标图和一个表示地理方向的字母表示出来。为了方便导航,平原将被划分为网格状。位置坐标示例:0,0,N,表示探测器在坐标图的左下角,且面朝北方。为控制探测器,NASA会传送一串简单的字母。可能传送的字母为: 'L ', 'R '和 'M '。 'L ',和 'R '分别表示使探测器向左、向右旋转90度,但不离开他所在地点。 'M ' 表示向前开进一个网格的距离,且保持方向不变。假设以广场(高原)的直北方向为y轴的指向。

输入:首先输入的line是坐标图的右上方,假定左下方顶点的坐标为0,0。剩下的要输入的是被分布好的探测器的信息。每个探测器需要输入wo lines。第一条line 提供探测器的位置,第二条是关于这个探测器怎样进行高原探测的一系列说明。位置是由两个整数和一个区分方向的字母组成,对应了探测器的(x,y)坐标和方向。每个探测器的移动将按序完成,即后一个探测器不能在前一个探测器完成移动之前开始移动。

输出:每个探测器的输出应该为它行进到的最终位置坐标和方向。输入和输出 测试如下:

期待的输入:

5 5

1 2 N

LMLMLMLMM

3 3 E

MMRMMRMRRM 期待的输出

1 3 N

5 1 E

我的解答

void CThoughtworksDlg::OnOok() 
{
    // TODO: Add your control notification handler code here
    UpdateData();
    char ch[10];
    GetDlgItem(IDC_EDIT_START)->GetWindowText(ch,10);
    int x=atoi(&ch[0]);
    int y=atoi(&ch[2]);
    char dir=ch[4];
    CClientDC dc(this);
    DrawTarget(dc,CPoint(xCord+x*space,yCord-y*space),dir,'R');
    char command[100];
    memset(command,0,100*sizeof(char));
    GetDlgItem(IDC_EDIT_COMMAND)->GetWindowText(command,100);
    char direction=dir;
    CPoint pt(x,y);
    for (int i=0;command[i]!=0;i++)
    {
        if (command[i]=='R')
        {
            direction=ChangeDirection(direction,'R');
        }
        else if (command[i]=='L')
        {
            direction=ChangeDirection(direction,'L');
        }
        else if (command[i]=='M')
        {
            pt=ChangePosition(pt,direction,'M');
        }
    }
    CPen* pPen=new CPen();
    pPen->CreatePen(PS_DOT, 1, RGB(0,0,255)); 
    CPen* pOldPen = dc.SelectObject(pPen);
    CString str;
    CString str1(direction);
    str.Format("%d,%d,",pt.x,pt.y);
    str=str+str1;
    GetDlgItem(IDC_RES)->SetWindowText(str);
    DrawTarget(dc,CPoint(xCord+pt.x*space,yCord-pt.y*space),direction,'B');
    dc.SelectObject(pOldPen);
    pPen->DeleteObject();
    UpdateData(FALSE);
}
char CThoughtworksDlg::ChangeDirection(char dirCur,char command)
{
    char dir;
    if (command=='L')
    {
        if (dirCur=='E')
        {
            dir='N';
        }
        else if (dirCur=='W')
        {
            dir='S';
        }
        else if (dirCur=='S')
        {
            dir='E';
        }
        else if (dirCur=='N')
        {
            dir='W';
        }
    }
    else if (command=='R')
    {
        if (dirCur=='E')
        {
            dir='S';
        }
        else if (dirCur=='W')
        {
            dir='N';
        }
        else if (dirCur=='S')
        {
            dir='W';
        }
        else if (dirCur=='N')
        {
            dir='E';
        }
    }
    return dir;
}
CPoint CThoughtworksDlg::ChangePosition(CPoint ptCur,char dirCur,char command)
{
    CPoint pt;
    if (command=='M')
    {
        if (dirCur=='E')
        {
            pt.x=ptCur.x+1;
            pt.y=ptCur.y;
        }
        else if(dirCur=='W')
        {
            pt.x=ptCur.x-1;
            pt.y=ptCur.y;
        }
        else if(dirCur=='S')
        {
            pt.x=ptCur.x;
            pt.y=ptCur.y-1;
        }
        else if(dirCur=='N')
        {
            pt.x=ptCur.x;
            pt.y=ptCur.y+1;
        }
    }
    return pt;
}

原文地址:https://www.cnblogs.com/lscheng/p/2721942.html