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 | 31 |
Tags
- 조합 재귀
- 순열코드
- 알고리즘
- 자바입출력
- 순열 재귀
- jquery 이벤트 처리
- jquery 필터선택자
- java lambda
- 자바 재귀 조합
- java Collections.sort()
- 서로소
- 후위표기
- inner class
- 알고리즘 그래프
- 자바스크립트 이벤트중지
- 자바스크립트 이벤트처리
- java 내부 클래스
- parseInt()
- str to char array
- jquery dom 계층 선택자
- 자바 순열 코드
- Interface
- jquery 속성선택자
- 자바 조합 재귀
- 재귀
- 재귀함수
- 상속
- char to str
- Java
- 자바
Archives
- Today
- Total
유블로그
SW expert 5650 핀볼게임 Java 본문
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.HashMap;
import java.util.Map;
import java.util.StringTokenizer;
public class 모의SW_5650_핀볼게임 {
static int N, MAX, score;
static int[][] grid;
static int[][] dir = new int[][] { { -1, 0 }, { 0, 1 }, { 1, 0 }, { 0, -1 } };
static Map<Integer, int[]> wormholes;
public static void main(String[] args) throws Exception {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringBuilder sb = new StringBuilder();
int T = Integer.parseInt(br.readLine().trim());
for (int testcase = 1; testcase <= T; testcase++) {
MAX = 0;
N = Integer.parseInt(br.readLine().trim());
wormholes = new HashMap<>();
grid = new int[N][N];
for (int i = 0; i < N; i++) {
StringTokenizer st = new StringTokenizer(br.readLine().trim());
for (int j = 0; j < N; j++) {
grid[i][j] = Integer.parseInt(st.nextToken());
if (grid[i][j] >= 6 && grid[i][j] <= 10) {
if (wormholes.containsKey(grid[i][j])) {
wormholes.put(grid[i][j] - 5, new int[] { i, j });
} else {
wormholes.put(grid[i][j], new int[] { i, j });
}
}
}
} // input
for (int i = 0; i < N; i++) {
for (int j = 0; j < N; j++) {
if (grid[i][j] == 0) {
for (int d = 0; d < 4; d++) {
score = 0;
solve2(i, j, d);
if(MAX < score) MAX = score;
}
}
}
}
sb.append("#").append(testcase).append(" ").append(MAX).append("\n");
} // t
System.out.println(sb.toString());
} // main
static void solve2(int startx, int starty, int direction) {
int curx = startx + dir[direction][0];
int cury = starty + dir[direction][1];
while (true) {
if (curx >= N || curx < 0 || cury >= N || cury < 0) { // 벽에 부딪히면
direction = (direction + 2) % 4;
curx += dir[direction][0];
cury += dir[direction][1];
score++;
}
if (curx == startx && cury == starty) return;
int now = grid[curx][cury];
if (now == -1) return;
if (now >= 1 && now <= 5) { // 삼각형 & 사각형
if (now == 1 && (direction == 2 || direction == 3)) {
switch(direction) {
case 2:
direction = 1;
break;
case 3:
direction = 0;
break;
}
curx += dir[direction][0];
cury += dir[direction][1];
score++;
} else if (now == 2 && (direction == 0 || direction == 3)) {
switch(direction) {
case 0:
direction = 1;
break;
case 3:
direction = 2;
break;
}
curx += dir[direction][0];
cury += dir[direction][1];
score++;
} else if (now == 3 && (direction == 1 || direction == 0)) {
switch(direction) {
case 1:
direction = 2;
break;
case 0:
direction = 3;
break;
}
curx += dir[direction][0];
cury += dir[direction][1];
score++;
} else if (now == 4 && (direction == 2 || direction == 1)) {
switch(direction) {
case 1:
direction = 0;
break;
case 2:
direction = 3;
break;
}
curx += dir[direction][0];
cury += dir[direction][1];
score++;
} else {
direction = (direction + 2) % 4;
curx += dir[direction][0];
cury += dir[direction][1];
score++;
}
} else if (now >= 6 && now <= 10) { // 웜홀
int[] pos = wormholes.get(now);
if (pos[0] == curx && pos[1] == cury) {
pos = wormholes.get(now - 5);
}
curx = pos[0] + dir[direction][0];
cury = pos[1] + dir[direction][1];
} else if (now == 0) { // 빈칸이면 그냥 전진
curx += dir[direction][0];
cury += dir[direction][1];
}
}
} // solve2
}
'알고리즘' 카테고리의 다른 글
[Java] swea 4008 숫자만들기 (0) | 2021.04.17 |
---|---|
[Java] BOJ 20058 마법사 상어와 파이어 스톰 (0) | 2021.04.16 |
[프로그래머스] 방문길이 Java (0) | 2021.03.09 |
[프로그래머스] 합승택시요금 Java (0) | 2021.02.22 |
[프로그래머스] 파일명 정렬 Java (0) | 2021.02.16 |