250x250
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
- 직무면접
- 삼성
- 알고리즘 문제
- englishbook
- BFS
- swexpertacademy
- 완전탐색
- nightroutine
- 프로그래머스
- 코테 준비
- 알고리즘
- readingbook
- STUDYENGLISH
- PyQt
- the midnight library
- sw expert academy
- 원서읽기
- 백준
- 코테
- 코테 대비
- 코딩테스트
- SQL
- dfs
- 원서
- sw expert
- English
- MySQL
- 쉬운 알고리즘 문제
- 원서읽자
- D4
Archives
- Today
- Total
시나브로
[ 프로그래머스 ] 멀쩡한 사각형 본문
728x90
규칙성을 찾는다고 찾았는데 잘못찾았다.
검색으로 찾은 규칙성은
최대 공약수로 나눈 크기의 사각형에서는 가로+세로-1의 사각형들이 잘린다는 것이다.
그래서 최대공약수를 찾고 계산하면 된다.
using namespace std;
long long solution(int w, int h)
{
long long answer = 1;
int fix = w;
int f_w = w;
int f_h = h;
if (w < h)
fix = h;
for (long long i = fix; i >0; i--) {
if (w % i == 0 && h % i == 0) {
w =w/i;
h =h/i;
break;
}
}
long long number = 0;
number = (f_h/h)*(h+w-1);
answer = (long long)f_w * f_h - number;
return answer;
}
728x90
'알고리즘 > 프로그래머스' 카테고리의 다른 글
[프로그래머스] 2 x n 타일링 (0) | 2020.04.26 |
---|---|
[ 프로그래머스 ] 스킬트리 (0) | 2020.04.04 |
[ 프로그래머스 ] 124 나라의 숫자 (0) | 2020.04.04 |
[코딩테스트 연습 _ 스택/큐] 기능 개발 (0) | 2020.03.13 |
[코딩테스트 연습 _ 스택/큐] 다리를 지나는 트럭 (0) | 2020.03.13 |
Comments