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 |
Tags
- oracle
- UnrealMP
- Linux
- command not found
- 실습
- OS
- FBX
- 1759번
- 오손데이터읽기
- 민겸수
- 2단계로킹
- 1253번
- 1967번
- 언리얼 플러그인
- 트랜잭션 관리
- UActor
- hackerank
- C++
- 셰그먼트트리
- 백준 1253번
- objtofbx
- 데이터베이스 배움터
- 언리얼 커스텀 플러그인
- Security
- 백준
- Unreal
- 5639
- 의미와 무의미의 경계에서
- 비재귀셰그먼트
- SQL
Archives
- Today
- Total
fatalite
C++ / 카펫 본문
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 |