POJ 2632 Crashing Robots

来源:互联网 发布:win10映射网络驱动器 编辑:程序博客网 时间:2024/04/30 02:20
Crashing Robots
Time Limit: 1000MS Memory Limit: 65536KTotal Submissions: 5697 Accepted: 2485

Description

In a modernized warehouse, robots are used to fetch the goods. Careful planning is needed to ensure that the robots reach their destinations without crashing into each other. Of course, all warehouses are rectangular, and all robots occupy a circular floor space with a diameter of 1 meter. Assume there are N robots, numbered from 1 through N. You will get to know the position and orientation of each robot, and all the instructions, which are carefully (and mindlessly) followed by the robots. Instructions are processed in the order they come. No two robots move simultaneously; a robot always completes its move before the next one starts moving.
A robot crashes with a wall if it attempts to move outside the area of the warehouse, and two robots crash with each other if they ever try to occupy the same spot.

Input

The first line of input is K, the number of test cases. Each test case starts with one line consisting of two integers, 1 <= A, B <= 100, giving the size of the warehouse in meters. A is the length in the EW-direction, and B in the NS-direction.
The second line contains two integers, 1 <= N, M <= 100, denoting the numbers of robots and instructions respectively.
Then follow N lines with two integers, 1 <= Xi <= A, 1 <= Yi <= B and one letter (N, S, E or W), giving the starting position and direction of each robot, in order from 1 through N. No two robots start at the same position.

Figure 1: The starting positions of the robots in the sample warehouse

Finally there are M lines, giving the instructions in sequential order.
An instruction has the following format:
< robot #> < action> < repeat>
Where is one of
  • L: turn left 90 degrees,
  • R: turn right 90 degrees, or
  • F: move forward one meter,

and 1 <= < repeat> <= 100 is the number of times the robot should perform this single move.

Output

Output one line for each test case:
  • Robot i crashes into the wall, if robot i crashes into a wall. (A robot crashes into a wall if Xi = 0, Xi = A + 1, Yi = 0 or Yi = B + 1.)
  • Robot i crashes into robot j, if robots i and j crash, and i is the moving robot.
  • OK, if no crashing occurs.

Only the first crash is to be reported.

Sample Input

45 42 21 1 E5 4 W1 F 72 F 75 42 41 1 E5 4 W1 F 32 F 11 L 11 F 35 42 21 1 E5 4 W1 L 961 F 25 42 31 1 E5 4 W1 F 41 L 11 F 20

Sample Output

Robot 1 crashes into the wallRobot 1 crashes into robot 2OKRobot 1 crashes into robot 2

Source

Nordic 2005
按照题目的意图写即可ac,要注意的是在旋转的时候旋转的次数可能大于等于4,处理即可
#include <iostream>#include <string>using namespace std;class num{    public:    int posx,posy;    int status;}a[150];int status[110][110];int main(){    int i,j,n,m,s,t,u,n1,m1;    int x,Time,k,xend,yend;    char ve,c;    cin>>t;    while(t--)    {        cin>>n>>m;        memset(status,0,sizeof(status));        cin>>n1>>m1;        for(i=1;i<=n1;i++)        {            cin>>a[i].posx>>a[i].posy>>ve;            if(ve=='N')            {                a[i].status=0;            }else if(ve=='W')            {                a[i].status=1;            }else if(ve=='S')            {                a[i].status=2;            }else if(ve=='E')            {                a[i].status=3;            }            status[a[i].posx][a[i].posy]=i;        }        k=0;        for(i=1;i<=m1;i++)        {            cin>>x>>c>>Time;            if(k==0)            {                if(c=='F')                {                    xend=a[x].posx;                    yend=a[x].posy;                    for(j=1;j<=Time;j++)                    {                        if(a[x].status==3)                        {                            xend+=1;                        }else if(a[x].status==1)                        {                            xend-=1;                        }else if(a[x].status==0)                        {                            yend+=1;                        }else                        {                            yend-=1;                        }                        if(xend==0||xend==n+1||yend==0||yend==m+1)                        {                            k=1;                            cout<<"Robot "<<x<<" crashes into the wall"<<endl;                            break;                        }else if(status[xend][yend]!=0)                        {                            k=1;                            cout<<"Robot "<<x<<" crashes into robot "<<status[xend][yend]<<endl;                            break;                        }                    }                    status[a[x].posx][a[x].posy]=0;                    status[xend][yend]=x;                    a[x].posx=xend;                    a[x].posy=yend;                }else if(c=='L')                {                    Time=Time%4;                    a[x].status=((a[x].status)+Time)%4;                }else if(c=='R')                {                    Time=Time%4;                    u=((a[x].status)+Time)%4;                    if(Time%2==0)                    {                        a[x].status=u;                    }else                    {                        if(u==1)                        {                            a[x].status=3;                        }else if(u==3)                        {                            a[x].status=1;                        }else if(u==2)                        {                            a[x].status=0;                        }else                        {                            a[x].status=2;                        }                    }                }            }        }        if(k==0)        {            cout<<"OK"<<endl;        }    }    return 0;}

原创粉丝点击