Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- springsecurity
- 낙관적 락 재시도
- interface
- OptimisticLock
- redissonlock aop
- S3
- kotest testcontainers
- @transactional
- netty
- Spring Cloud Gateway
- ObjectOptimisticLockingFailureException 처리
- spring DI
- 형상관리
- 멀티모듈 테스트컨테이너
- AccessToken
- jpa
- 우아한 테크러닝
- Invalid property 'principal.username' of bean class
- spring aop
- java
- aop
- DI
- 낙관적 락 롤백
- 백준
- ObjectOptimisticLockingFailureException
- TestContainers
- 알고리즘
- RefreshToken
- 소수찾기 java
- multimodule testcontainers
Archives
- Today
- Total
조급하면 모래성이 될뿐
2018 윈터코딩 방문 길이 본문
문제 링크 : https://programmers.co.kr/learn/courses/30/lessons/49994
나의 풀이
ㅇboolean타입의 4차원배열을 만들어서 이동좌표를 모두 체크.
* 처음에는 2차원 배열로 해결을 하려고했더니, 정확한 방문체크를 하기가 어려웠습니다.
해결방안으로 4차원배열을 사용하였고 5,5에서 L수행하여 4,5로 이동했다고 가정했을때 5,5 -> 4,5를 visit[5][5][4][5]와 같이 체크하였습니다.
또, 5,5 -> 4,5는 4,5 -> 5,5처럼 양방향으로 이루어지기때문에 모두 visit체크를 해주었습니다.
코드
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
62
63
64
65
66
67
68
69
|
package Programmers;
public class VisitLength {
// 위,아래,오른쪽,왼쪽순서
static int[] intX = { 0, 0, 1,-1 } ;
static int[] intY = { 1,-1, 0, 0 } ;
public static void main(String[] args) {
String dirs = "LR";
int answer = solution(dirs);
System.out.println(answer);
}//main
public static int solution(String dirs) {
int answer = 0;
boolean[][][][] visits = new boolean[11][11][11][11];
char[] dirss = dirs.toCharArray();
int index = 0 ;
int x = 0 ;
int y = 0 ;
int nextX = 5;
int nextY = 5;
for ( int i = 0 ; i < dirss.length; i ++ ) {
int dir = dirss[i];
if( dir == 'U') index = 0;
else if( dir == 'D') index = 1;
else if( dir == 'R') index = 2;
else if( dir == 'L') index = 3;
x = nextX ;
y = nextY ;
nextX += intX[index];
nextY += intY[index];
if ( nextX < 0 || nextX > 10 || nextY < 0 || nextY > 10 ) {
nextX -= intX[index];
nextY -= intY[index];
continue;
}
if ( !visits[x][y][nextX][nextY] ) {
visits[x][y][nextX][nextY] = true;
visits[nextX][nextY][x][y] = true;
answer++;
}
}
return answer;
}
}//class
|
cs |
제출 결과
반응형
'Algorithm' 카테고리의 다른 글
2018 윈터코딩 쿠키 구입 (0) | 2019.10.25 |
---|---|
2018 윈터코딩 스킬트리 (0) | 2019.10.24 |
[백준] 1966 프린터 큐 (0) | 2019.10.15 |
프렌즈4블록 (0) | 2019.08.22 |