forked from shuboc/LeetCode-2
-
Notifications
You must be signed in to change notification settings - Fork 1
/
walking-robot-simulation.py
61 lines (59 loc) · 1.87 KB
/
walking-robot-simulation.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# Time: O(n + k)
# Space: O(k)
# 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:
# - 0 <= commands.length <= 10000
# - 0 <= obstacles.length <= 10000
# - -30000 <= obstacle[i][0] <= 30000
# - -30000 <= obstacle[i][1] <= 30000
# - The answer is guaranteed to be less than 2 ^ 31.
class Solution(object):
def robotSim(self, commands, obstacles):
"""
:type commands: List[int]
:type obstacles: List[List[int]]
:rtype: int
"""
directions = [(0, 1), (1, 0), (0, -1), (-1, 0)]
x, y, i = 0, 0, 0
lookup = set(map(tuple, obstacles))
result = 0
for cmd in commands:
if cmd == -2:
i = (i-1) % 4
elif cmd == -1:
i = (i+1) % 4
else:
for k in xrange(cmd):
if (x+directions[i][0], y+directions[i][1]) not in lookup:
x += directions[i][0]
y += directions[i][1]
result = max(result, x*x + y*y)
return result