[프로그래머스77485] 행렬 테두리 회전하기_Java

코뉴·2021년 10월 25일
0

프로그래머스🍳

목록 보기
1/10

2021 Dev-Matching 웹 백엔드 개발자 (상반기)

🥚문제

🥚입력/출력

https://programmers.co.kr/learn/courses/30/lessons/77485


🍳코드

class Solution {
    public int[] solution(int rows, int columns, int[][] queries) {
        // 초기 행렬 생성
        int[][] arr = new int[rows][columns];
        for(int i = 0; i < rows; i++){
            for(int j = 0; j < columns; j++){
                arr[i][j] = i * columns + j + 1;
            }
        }
        
        // query가 하나일 때
        if(queries.length == 1){
            int[] query = queries[0];
            int[] answer = {arr[query[0] - 1][query[1] -1]};
            return answer;
        }
        
        // query가 여러개일 때
        // 회전 전 행렬 출력해보기
        /*
        for(int i = 0; i < rows; i++){
            for(int j = 0; j < columns; j++){
                System.out.print(arr[i][j] + " ");
            }
            System.out.println();
        }
        */
        int[] answer = new int[queries.length];
        int index = 0;
        for(int[] query : queries){
            // 회전 전 최소값을 answer에 추가하고 index 증가
            answer[index++] = get_min(query, arr);
            arr = rotate(query, arr);
        }
        return answer;
    }
    
    public static int get_min(int[] query, int[][] arr){
        int x1 = query[0] - 1;
        int y1 = query[1] - 1;
        int x2 = query[2] - 1;
        int y2 = query[3] - 1;
        
        int min = 10001;
        for(int r = x1; r <= x2; r++){
            for(int c = y1; c <= y2; c++){
                // 중간에 껴있는 애들 제외
                if(x1 < r && r < x2){
                    if(y1 < c && c < y2){
                        continue;
                    }
                }
                if(arr[r][c] < min){
                    min = arr[r][c];
                }
            }
        }
        return min;
    }
    
    public static int[][] rotate(int[] query, int[][] arr){
        // 새 행렬 생성
        int[][] new_arr = new int[arr.length][arr[0].length];
        for(int i = 0; i < arr.length; i ++){
            for(int j = 0; j < arr[0].length; j++){
                new_arr[i][j] = arr[i][j];
            }
        }
        
        // query 분석. index 값으로 만들기 위해 -1
        int x1 = query[0] - 1;
        int y1 = query[1] - 1;
        int x2 = query[2] - 1;
        int y2 = query[3] - 1;
        
        for(int r = x1; r <= x2; r++){
            for(int c = y1; c <= y2; c++){
                // 오른쪽(→) 으로 움직이는 경우
                if(r == x1){
                    if(y1 <= c && c < y2){
                        new_arr[r][c + 1] = arr[r][c];
                        //System.out.println(r + ", " + c + "→");
                    }
                }
                // 아래(↓)로 움직이는 경우
                if(c == y2){
                    if(x1 <= r && r < x2){
                        new_arr[r+1][c] = arr[r][c];
                        //System.out.println(r + ", " + c + "↓");
                    }
                }
                // 왼쪽(←)으로 움직이는 경우
                if(r == x2){
                    if(y1 < c && c <= y2){
                        new_arr[r][c-1] = arr[r][c];
                        //System.out.println(r + ", " + c + "←");
                    }
                }
                // 위(↑)로 움직이는 경우
                if(c == y1){
                    if(x1 < r && r <= x2){
                        new_arr[r-1][c] = arr[r][c];
                        //System.out.println(r + ", " + c + "↑");
                    }
                }
            }
        }
        
        // 출력해보기
        /*
        System.out.println("-----회전해봄------");
        for(int i = 0; i < new_arr.length; i++){
            for(int j = 0; j < new_arr[0].length; j++){
                System.out.print(new_arr[i][j] + " ");
            }
            System.out.println();
        }
        */
        return new_arr;
    }
}

🧂아이디어

  • 아이디어는 금방 떠올림 🙆‍♀️
  • 디버깅하는 데 시간이 좀 오래 걸렸다
    - for문 안에서 update해주는 변수를 잘못 썼다던지
    - 조건문을 꼼꼼하게 확인해야 했다
profile
코뉴의 도딩기록

0개의 댓글

관련 채용 정보