Moments of growth

[완전 탐색] 카펫 본문

Algorithm [C++]/Programmers [Level2]

[완전 탐색] 카펫

뮤링이 2022. 6. 28. 01:33
#include <string>
#include <vector>
#include <cmath>

using namespace std;

vector<int> solution(int brown, int yellow) {
    vector<int> answer;
    
    for(int h=1; h<=sqrt(brown+yellow);h++){
        if((brown+yellow)%h==0){
            int w=(brown+yellow)/h;
            if((w-2) * (h-2)==yellow){
                return vector<int>{w, h};
            }
        }
    }
}

'Algorithm [C++] > Programmers [Level2]' 카테고리의 다른 글

[정렬] H-Index  (0) 2022.05.23
[정렬] 가장 큰 수  (0) 2022.05.22
[스택/큐] 주식가격  (0) 2022.05.15
[Heap] 더 맵게  (0) 2022.05.15
[스택/큐] 다리를 지나는 트럭  (0) 2022.05.14
Comments