티스토리 뷰
Problem
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 degrees 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: instructions = "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: instructions = "GG"
Output: false
Explanation: The robot moves north indefinitely.
Example 3:
Input: instructions = "GL"
Output: true
Explanation: The robot moves from (0, 0) -> (0, 1) -> (-1, 1) -> (-1, 0) -> (0, 0) -> ...
Constraints:
- 1 <= instructions.length <= 100
- instructions[i] is 'G', 'L' or, 'R'.
Solution
세 가지 명령을 반복적으로 영원히 수행하는 로봇이 있는데 명령이 로봇을 순환하게 만드는 경우 true를 반환하는 문제입니다.
package io.lcalmsky.leetcode.robot_bounded_in_circle;
public class Solution {
public boolean isRobotBounded(String instructions) {
int x = 0;
int y = 0;
int index = 0;
int[][] directions = {{0, -1}, {1, 0}, {0, 1}, {-1, 0}}; // (1)
for (char instruction : instructions.toCharArray()) {
if (instruction == 'R') { // (2)
index = (index + 1) % 4;
continue;
}
if (instruction == 'L') { // (3)
index = (index + 3) % 4;
continue;
}
x += directions[index][0]; // (4)
y += directions[index][1]; // (5)
}
return (x == 0 && y == 0) || index != 0; // (6)
}
}
- 각각 (x, y) 좌표를 나타내고 각 좌표는 북, 동, 남, 서를 나타냅니다.
- 명령이 R일 때 방향을 설정해줍니다. 처음 R일 때 1이므로 동, 그 다음은 2가 되어 남, 3이 되어 서, 0이 되어 북 순입니다.
- 명령이 L일 때 방향을 설정해줍니다. 처음 L일 때 3이므로 서, 그 다음은 6이라 2가 되어 남, 다음은 5라 1이되고 동, 다음은 4라 0이되어 북 순입니다.
- 정해진 방향에 해당하는만큼 x 좌표를 이동시킵니다.
- 정해진 방향에 해당하는만큼 y 좌표를 이동시킵니다.
- 최종적으로 x, y좌표가 0이 되면 순환합니다. x, y좌표가 아닌 경우 위치가 이동했다는 것을 나타내고 이 때는 방향이 중요해집니다. index가 0이면 북쪽을 나타내는데 초기 방향이 북쪽이므로 위치는 이동한 상태에서 계속 같은 방향으로 이동하기 때문에 순환하지 않습니다. 반면 index가 1, 2, 3이 나온다면 각각 90도, 180도, 270도를 나타내고, 90도는 4번 반복, 180도는 2번 반복, 270도는 마찬가지로 4번 반복하면 초기 위치로 돌아올 수 있습니다.
Test
package io.lcalmsky.leetcode.robot_bounded_in_circle;
import static org.junit.jupiter.api.Assertions.assertAll;
import static org.junit.jupiter.api.Assertions.assertFalse;
import static org.junit.jupiter.api.Assertions.assertTrue;
import org.junit.jupiter.api.Test;
class SolutionTest {
@Test
void testAll() {
Solution solution = new Solution();
assertAll(
() -> assertTrue(solution.isRobotBounded("GGLLGG")),
() -> assertFalse(solution.isRobotBounded("GG")),
() -> assertTrue(solution.isRobotBounded("GL"))
);
}
}
'Algorithm > LeetCode' 카테고리의 다른 글
1022. Sum of Root To Leaf Binary Numbers (0) | 2022.01.12 |
---|---|
67. Add Binary (0) | 2022.01.11 |
1463. Cherry Pickup II (0) | 2022.01.09 |
382. Linked List Random Node (0) | 2022.01.08 |
1094. Car Pooling (0) | 2022.01.07 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- Spring Boot
- intellij
- r
- Spring Boot Tutorial
- gRPC
- leetcode
- 함께 자라기
- @ManyToOne
- 헥사고날 아키텍처
- 스프링 부트 회원 가입
- Spring Data JPA
- JSON
- JPA
- 스프링 부트
- 클린 아키텍처
- 스프링 부트 튜토리얼
- 스프링 데이터 jpa
- Jackson
- 스프링부트
- 알고리즘
- Linux
- QueryDSL
- 스프링 부트 애플리케이션
- Java
- spring boot jwt
- proto3
- spring boot app
- 함께 자라기 후기
- spring boot application
- Spring Boot JPA
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함