[프로그래머스 C++] 카펫
[프로그래머스 C++] 카펫
https://school.programmers.co.kr/learn/courses/30/lessons/42842
해결전략
완전 탐색
코드
#include <iostream>
#include <string>
#include <vector>
using namespace std;
vector<int> solution(int brown, int yellow) {
vector<int> answer;
int total = brown + yellow;
int row = 0, column = 0, dif = total;
for (int i=1; i<= total/2; i++)
{
if (total % i == 0) //약수인 경우
{
int temp = total / i;//i와 대응되는 약수 구하기
if(dif > abs(temp - i)) //약수 쌍의 차이값이 작은 것을 사용
{
// 가능한 행, 열에서 노란색 타일이 적절하게 배치되는지 확인
int yellow_tile_count = (temp - 2) * (i - 2);
if (yellow_tile_count == yellow)
{
dif = abs(temp - i);
column = temp;
row = i;
}
}
}
}
answer.push_back(column);
answer.push_back(row);
return answer;
}
int main(){
for (auto i : solution(24, 24))
cout << i << " ";
return 0;
}
'⭐ 코딩테스트 > 프로그래머스' 카테고리의 다른 글
[프로그래머스 C++] 점프와 순간 이동 (0) | 2023.08.24 |
---|---|
[프로그래머스 C++] 구명보트 (0) | 2023.08.23 |
[프로그래머스 C++] 짝지어 제거하기 (0) | 2023.08.21 |
[프로그래머스 C++] 다음 큰 숫자 (0) | 2023.08.13 |
[프로그래머스 C++] 숫자의 표현 (0) | 2023.08.12 |
댓글
이 글 공유하기
다른 글
-
[프로그래머스 C++] 점프와 순간 이동
[프로그래머스 C++] 점프와 순간 이동
2023.08.24 -
[프로그래머스 C++] 구명보트
[프로그래머스 C++] 구명보트
2023.08.23 -
[프로그래머스 C++] 짝지어 제거하기
[프로그래머스 C++] 짝지어 제거하기
2023.08.21 -
[프로그래머스 C++] 다음 큰 숫자
[프로그래머스 C++] 다음 큰 숫자
2023.08.13