874. Walking Robot Simulation

A robot on an infinite grid starts at point (0, 0) and faces north.  The robot can receive one of three possible types of commands:

  • -2: turn left 90 degrees
  • -1: turn right 90 degrees
  • 1 <= x <= 9: move forward x units

Some of the grid squares are obstacles. 

The i-th obstacle is at grid point (obstacles[i][0], obstacles[i][1])

If the robot would try to move onto them, the robot stays on the previous grid square instead (but still continues following the rest of the route.)

Return the square of the maximum Euclidean distance that the robot will be from the origin.

Example 1:

Input: commands = [4,-1,3], obstacles = []
Output: 25
Explanation: robot will go to (3, 4)

Example 2:

Input: commands = [4,-1,4,-2,4], obstacles = [[2,4]]
Output: 65
Explanation: robot will be stuck at (1, 4) before turning left and going to (1, 8)

Note:

  1. 0 <= commands.length <= 10000
  2. 0 <= obstacles.length <= 10000
  3. -30000 <= obstacle[i][0] <= 30000
  4. -30000 <= obstacle[i][1] <= 30000
  5. The answer is guaranteed to be less than 2 ^ 31.

模拟一下就好了

class Solution:
    def robotSim(self, commands, obstacles):
        """
        :type commands: List[int]
        :type obstacles: List[List[int]]
        :rtype: int
        """
        from collections import defaultdict
        dirs = ['N','E','S','W']
        dir = x = y = 0
        s = (x,y)
        t = (x,y)
        ma = 0
        dx, dy = defaultdict(list), defaultdict(list)
        for ox,oy in obstacles:
            dx[ox].append(oy)
            dy[oy].append(ox)
            
        for i in commands:
            if i==-1: dir=(dir+1)%4
            elif i==-2: dir=(dir-1+4)%4
            else:
                if dir==0: t=(s[0],s[1]+i)
                elif dir==1: t=(s[0]+i,s[1])
                elif dir==2: t=(s[0],s[1]-i)
                else: t=(s[0]-i,s[1])
                
                if s[0]==t[0]:
                    ox = s[0]
                    for oy in dx.get(ox, []):
                        if s[1]<=oy<=t[1]: t=(t[0],oy-1)
                        if t[1]<=oy<=s[1]: t=(t[0],oy+1)
                elif s[1]==t[1]:
                    oy = s[1]
                    for ox in dy.get(oy, []):
                        if s[0]<=ox<=t[0]: t=(ox-1,t[1])
                        if t[0]<=ox<=s[0]: t=(ox+1,t[1])
                        
                ma = max(ma, t[0]*t[0]+t[1]*t[1])
                s = t
        return ma
    
                        

猜你喜欢

转载自blog.csdn.net/zjucor/article/details/81153484