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
- 비트마스크
- React.StrictMode
- 백준 알고리즘
- Lv3
- 스택
- div2개
- 5강클로저
- 타겟넘버
- 프로그래머스
- DP
- 백준알고리즘
- 최소스패닝트리
- 두원사이의정수쌍
- JS
- 과제진행하기
- JS스터디
- [pccp 기출문제]
- solved.ac플래티넘
- pccp기출문제
- 2023카카오블라인드코테
- c++
- Lv2
- 코어자바스크립트
- 우박수열정적분
- 지도 여러개
- 알고리즘 문제풀이
- solved.ac골드
- 이중지도
- 알고리즘문제풀이
- 정렬
Archives
- Today
- Total
호지
[프로그래머스] 행렬 테두리 회전하기 문제풀이 c++ 본문
한 줄씩 순서대로 적힌 행렬을 board배열에 만듭니다.
queries에 x1, y1, x2, y2값으로 시계방향으로 경계가 주어집니다.
따라서 x1,y1을 시작점으로 하여
y 1증가, x 1증가, y 1감소, x 1감소로 값을 회전시키면서 res에 최솟값을 구합니다.
#include <string>
#include <vector>
using namespace std;
vector<int> solution(int rows, int columns, vector<vector<int>> queries) {
vector<int> answer;
int board[rows+1][columns+1];
int a = 1;
for(int i=1; i<=rows; i++){
for(int j=1; j<= columns; j++){
board[i][j] = a++;
}
}
for(int i=0; i< queries.size(); i++){
int res = a;
int x1 = queries[i][0];
int y1 = queries[i][1];
int x2 = queries[i][2];
int y2 = queries[i][3];
int move = board[x1][y1];
res = min(res,move);
int tmp;
for(int y=y1+1; y<=y2; y++){
tmp = board[x1][y];
board[x1][y] = move;
move = tmp;
res = min(res,move);
}
for(int x=x1+1; x<=x2; x++){
tmp = board[x][y2];
board[x][y2] = move;
move = tmp;
res = min(res,move);
}
for(int y=y2-1; y>=y1; y--){
tmp = board[x2][y];
board[x2][y] = move;
move = tmp;
res = min(res,move);
}
for(int x=x2-1; x>=x1; x--){
tmp = board[x][y1];
board[x][y1] = move;
move = tmp;
res = min(res,move);
}
answer.push_back(res);
}
return answer;
}
'알고리즘 > 프로그래머스' 카테고리의 다른 글
[프로그래머스] 뉴스 클러스터링 문제풀이 c++ (0) | 2022.04.13 |
---|---|
[프로그래머스] 괄호 변환 문제풀이 c++ (0) | 2022.04.13 |
[프로그래머스] 메뉴 리뉴얼 문제풀이 c++ (0) | 2022.04.12 |
[프로그래머스] 짝지어 제거하기 c++ (0) | 2022.04.11 |
[프로그래머스] 타겟넘버 c++ (0) | 2022.04.11 |
Comments