友情支持

如果您觉得这个笔记对您有所帮助,看在D瓜哥码这么多字的辛苦上,请友情支持一下,D瓜哥感激不尽,😜

支付宝

微信

有些打赏的朋友希望可以加个好友,欢迎关注D 瓜哥的微信公众号,这样就可以通过公众号的回复直接给我发信息。

wx jikerizhi

公众号的微信号是: jikerizhi因为众所周知的原因,有时图片加载不出来。 如果图片加载不出来可以直接通过搜索微信号来查找我的公众号。

1041. Robot Bounded In Circle

On an infinite plane, a robot initially stands at (0, 0) and faces north. The robot can receive one of three instructions:

  • "G": go straight 1 unit;

  • "L": turn 90 degrees to the left;

  • "R": turn 90 degress to the right.

The robot performs the instructions given in order, and repeats them forever.

Return true if and only if there exists a circle in the plane such that the robot never leaves the circle.

Example 1:

Input: "GGLLGG"
Output: true
Explanation:
The robot moves from (0,0) to (0,2), turns 180 degrees, and then returns to (0,0).
When repeating these instructions, the robot remains in the circle of radius 2 centered at the origin.

Example 2:

Input: "GG"
Output: false
Explanation:
The robot moves north indefinitely.

Example 3:

Input: "GL"
Output: true
Explanation:
The robot moves from (0, 0) -> (0, 1) -> (-1, 1) -> (-1, 0) -> (0, 0) -> ...

Note:

  • 1 ⇐ instructions.length ⇐ 100

  • instructions[i] is in {'G', 'L', 'R'}

思路分析

这道题不是要看路径是否相交。

这道题的关键点事找出不存在环路的条件:执行一遍指令后,机器人必须不在原点且方向继续朝北:

  • 如果在原点,无论执行多少遍,结果都会在原点。

  • 如果方向不是初始化方向,那么多次执行后,就会相互抵消,形成环路。

  • 一刷

 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
/**
 * @author D瓜哥 · https://www.diguage.com
 * @since 2024-09-27 16:10:21
 */
public boolean isRobotBounded(String instructions) {
  int x = 0, y = 0;
  int dx = 0, dy = 1;
  for (int i = 0; i < instructions.length(); i++) {
    char step = instructions.charAt(i);
    if (step == 'G') {
      x += dx;
      y += dy;
    } else if (step == 'R') {
      int temp = dx;
      dx = dy;
      dy = -temp;
    } else if (step == 'L') {
      int temp = dx;
      dx = -dy;
      dy = temp;
    }
  }
  return !(dx == 0 && dy == 1) || (x == 0 && y == 0);
}