874. Walking Robot Simulation

30 篇文章 0 订阅

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
    
                        

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值