이쿠의 슬기로운 개발생활

함께 성장하기 위한 보안 개발자 EverNote 내용 공유

코딩테스트

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

이쿠우우 2022. 3. 21. 21:38
반응형

 

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

 

코딩테스트 연습 - 행렬 테두리 회전하기

6 6 [[2,2,5,4],[3,3,6,6],[5,1,6,3]] [8, 10, 25] 3 3 [[1,1,2,2],[1,2,2,3],[2,1,3,2],[2,2,3,3]] [1, 1, 5, 3]

programmers.co.kr

 

글쓴이의 답

개인적인 풀이 임으로

이것보다 더 좋은 알고리즘은 많음...

이렇게도 풀이하는구나.. 공유하기 위해 올림...

#include <string>
#include <vector>
#include <set>
#include <iostream>
#include <iomanip>

using namespace std;

vector<int> solution(int rows, int columns, vector<vector<int>> queries) {
    vector<int> answer;
    
    int map[rows][columns];
    int count =1;
    
    for(int i=0; i< rows; i++){        
        for(int k=0; k< columns; k++){            
            map[i][k] = count;
            count++;
        }        
    }    
    
    
    for(vector<int> it : queries){
        int startWidth = it[0]-1;
        int startHeight = it[1]-1;
        int endWidth = it[2]-1;
        int endHeight = it[3]-1;
        
        
        set<int> result;
        
        int temp = map[startWidth][startHeight];
        
        for(int i=startHeight+1; i <= endHeight; i++){            
            int num = map[startWidth][i];
            map[startWidth][i] = temp;
            result.insert(temp);
            temp = num;
        }
        
        
        for(int i=startWidth+1; i <= endWidth; i++){            
            int num = map[i][endHeight];
            map[i][endHeight] = temp;
            result.insert(temp);
            temp = num;
        }
        
        
        
        for(int i=endHeight-1; i >= startHeight; i--){            
            int num = map[endWidth][i];
            map[endWidth][i] = temp;
            result.insert(temp);
            temp = num;
        }
       
        
        
        for(int i=endWidth-1; i >= startWidth; i--){
            int num = map[i][startHeight];
            map[i][startHeight] = temp;
            result.insert(temp);
            temp = num;
        }
        answer.push_back(*result.begin());
        
    }
    
    
    return answer;
}

꾸준히 하다보면 실력이 늘겠지..

반응형