관리 메뉴

fatalite

C++ / 카펫 본문

코딩 인터뷰/프로그래머스

C++ / 카펫

fataliteforu 2023. 5. 7. 14:42

Problem

난이도 : 프로그래머스 2단계, 69%

분류 : 완전탐색 

Soultion 

#include <string>
#include <vector>
#include <iostream> 
using namespace std;
// 2개 -> 1 x 2
// 테두리까지하면 3 x 4
// 6개 -> 3 x 2 , 6 x 1
vector<int> solution(int brown, int yellow) {
    vector<pair<int,int>> PossibleInteger;
    vector<int> answer;
    for(int i = yellow; i >= 1; i--){
        if(yellow % i == 0){
            PossibleInteger.push_back({i,yellow/i});
        }
    }
    for(pair<int,int> p : PossibleInteger){
        if((p.first+2) * (p.second + 2) == p.first * p.second + brown ){
            answer.push_back(p.first+2);
            answer.push_back(p.second+2);
            break;
        }
    }
    
    return answer;
}

'코딩 인터뷰 > 프로그래머스' 카테고리의 다른 글

C++ / 예상대진표  (0) 2023.05.09
C++ / 구명보트  (0) 2023.05.08
C++ / 영어 끝말잇기  (0) 2023.05.07
C++ / 숫자의 표현  (0) 2023.04.24
C++ / 이진 변환 반복하기  (0) 2023.04.24