Home 99클럽 코테 스터디 19일차 TIL
Post
Cancel

99클럽 코테 스터디 19일차 TIL

문제

BOJ 1022 - 소용돌이 예쁘게 출력하기

해결 방법

  1. 배열을 입력받은 크기만큼 선언한다.
  2. 선언한 배열을 문제에서 주어진 조건에 맞게 값을 채운다.
  3. 값을 채운 배열을 출력 형식에 맞춰 출력한다.

정답 코드 - JAVA

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
import java.io.*;
import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(System.out));
        StringTokenizer st = new StringTokenizer(br.readLine());
        int r1 = Integer.parseInt(st.nextToken());
        int c1 = Integer.parseInt(st.nextToken());
        int r2 = Integer.parseInt(st.nextToken());
        int c2 = Integer.parseInt(st.nextToken());
        int[][] arr = new int[r2 - r1 + 1][c2 - c1 + 1];
        int[] dx = {0, -1, 0, 1};
        int[] dy = {1, 0, -1, 0};
        int x = 0;
        int y = 0;
        int tmp = 0;
        int num = 1;
        int dist = 1; // 한 방향으로 이동해야하는 거리
        int cnt = 0; // 한 방향으로 이동한 거리

        while (!(arr[0][0] != 0 && arr[r2 - r1][0] != 0 && arr[0][c2 - c1] != 0 && arr[r2 - r1][c2 - c1] != 0)) {
            if (x >= r1 && x <= r2 && y >= c1 && y <= c2) {
                arr[x - r1][y - c1] = num;
            }
            num++;
            cnt++;
            x = x + dx[tmp];
            y = y + dy[tmp];

            if (cnt == dist) {
                cnt = 0;
                if (tmp == 1 || tmp == 3) {
                    dist++;
                }
                tmp = (tmp + 1) % 4;
            }
        }
        int len = Integer.toString(num - 1).length();
        for (int i = 0; i <= r2 - r1; i++) {
            for (int j = 0; j <= c2 - c1; j++) {
                System.out.printf("%" + len + "d ", arr[i][j]);
            }
            System.out.println();
        }
    }
}

오늘의 회고

구현 문제는 항상 귀찮은 문제들이 많은 것 같다.

This post is licensed under CC BY 4.0 by the author.