일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 취준기록
- foldindexed
- 코틀린
- 다시 정리해야함
- 다시봐
- 다시정리하기
- filternot
- iPortfolio
- array랑 list
- 알고리즘 인증_2주차
- 코딩테스트
- recyclerview
- Filter
- 알고리즘 인증
- 알고리즘 인증_1주차
Archives
- Today
- Total
Moments of growth
[완전 탐색] 카펫 본문
#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