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
- docker-compose
- dp
- Logback
- 백트래킹
- 도커
- 게이트웨이
- spring cloud
- 서비스 디스커버리
- spring boot
- 스택
- 이분 매칭
- 이분 탐색
- 완전 탐색
- 플로이드 와샬
- 비트마스킹
- ZuulFilter
- 스프링 시큐리티
- 달팽이
- Spring Cloud Config
- Zuul
- Gradle
- 다익스트라
- 구현
- Java
- 주울
- BFS
- 메모이제이션
- 구간 트리
- 유레카
- 트리
Archives
- Today
- Total
Hello, Freakin world!
[백준 1913번][Java] 달팽이 - 2차원 배열 순회하기 본문
문제 풀이
2차원 배열을 달팽이 방향으로 순회하면서 숫자를 기입하는 문제입니다.
시계 방향으로 순회하기 때문에 방향은 상,우,하,좌 이렇게 1차원 배열에 넣고 순환시키면 될 것 같습니다. 그리고 이 문제의 경우 한 쪽 방향으로 숫자 개수가 점점 커지기 때문에 이 점도 고려해야 합니다. 찬찬히 살펴보면 어느 방향이든 (한쪽 행, 한쪽 열)이 사이클이 되며 이 때마다 필요한 숫자 개수가 하나씩 늘어납니다.
주의할 점이 있다면 인덱스 범위를 넘지 않도록 종결 조건을 주고, 마지막에 한 열을 채워넣는 점이겠네요.
import java.io.*;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
/*
달팽이
https://www.acmicpc.net/problem/1913
*/
public class Main {
static int n, target;
static int[][] snail;
static Point targetPosition;
public static void main(String[] args) throws IOException {
// InputReader reader = new InputReader("testcase.txt");
InputReader reader = new InputReader();
n = reader.readInt();
target = reader.readInt();
snail = new int[n][n];
makeSnail(snail);
StringBuilder sb = new StringBuilder();
for (int i = 0; i < n; i++) {
for (int j = 0; j < n; j++) {
sb.append(snail[i][j]);
if(j != n-1) sb.append(" ");
if(j == n-1) sb.append("\n");
}
}
sb.append((targetPosition.row+1) + " " + (targetPosition.col+1));
System.out.println(sb.toString());
}
static int[] dr = {-1,0,1,0};
static int[] dc = {0,1,0,-1};
static int number = 1;
private static void makeSnail(int[][] snail) {
int row = n/2; int col = n/2;
snail[row][col] = 1;
int length = 1; int dirIdx = 0;
while(true) {
//수직방향
for (int i = 0; i < length; i++) {
row += dr[dirIdx]; col += dc[dirIdx];
snail[row][col] = incrementNumber(row, col);
}
dirIdx = (dirIdx+1)%4;
//수평방향
for (int i = 0; i < length; i++) {
row += dr[dirIdx]; col += dc[dirIdx];
snail[row][col] = incrementNumber(row, col);
}
dirIdx = (dirIdx+1)%4;
if(length == n-1) break;
length++;
}
//마지막 처리
for (int i = 0; i < length; i++) {
row += dr[0]; col += dc[0];
snail[row][col] = incrementNumber(row, col);
}
}
public static int incrementNumber(int row, int col) {
int nextN = ++number;
if(nextN == target) targetPosition = new Point(row, col);
return nextN;
}
}
class Point {
int row, col;
public Point(int row, int col) {
this.row = row;
this.col = col;
}
}
class InputReader {
private BufferedReader br;
public InputReader() {
br = new BufferedReader(new InputStreamReader(System.in));
}
public InputReader(String filepath) {
try {
br = new BufferedReader(new FileReader(filepath));
} catch (FileNotFoundException e) {
e.printStackTrace();
}
}
public List<Character> readLineIntoCharList() throws IOException {
List<Character> l = new ArrayList<>();
while(true) {
int readVal = br.read();
if(readVal == '\n' || readVal == -1) break;
l.add((char)readVal);
}
return l;
}
public boolean ready() throws IOException {
return br.ready();
}
public String readLine() throws IOException {
return br.readLine();
}
public int readInt() throws IOException {
return Integer.parseInt(readLine());
}
public Long readLong() throws IOException {
return Long.parseLong(readLine());
}
}
'알고리즘 > PS' 카테고리의 다른 글
[백준 1959번][Java] 달팽이3 (0) | 2020.10.05 |
---|---|
[백준 1952번][Java] 달팽이 2 (0) | 2020.10.05 |
[백준 2875번][Java] 대회 or 인턴 - 간단한 방정식 (0) | 2020.10.04 |
[백준 1525번][Java] 퍼즐 - 그래프 상태 비트마스킹하기 (0) | 2020.10.04 |
[백준 11723번][Java] 집합 - 비트마스크 집합 연산 구현하기 (0) | 2020.10.03 |
Comments