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
- uclidean algorithm
- Graham Scan
- 백준
- 리눅스
- 내적
- GJK
- AABB
- dp
- Doubly Connected Edge List
- SOH
- 보로노이다이어그램
- C++
- 충돌 알고리즘
- 다이나믹 프로그래밍
- c#
- linux
- C
- 유니티
- Vector
- 벡터
- 알고리즘
- PS
- Unity
- 우분투
- 외적
- ubuntu
- 수학
- 분할축 이론
- 문제풀이
- Expanding Polytope Algorithm
Archives
- Today
- Total
마이 플밍 블로그
[C++]백준 14226 - 이모티콘 본문
https://www.acmicpc.net/status?user_id=dkak14&problem_id=14226&from_mine=1
코드
#include <iostream>
#include <memory.h>
#include <math.h>
using namespace std;
int S;
int IMT[1003][1003];
int answer = 98765432;
void CalIMT(int imtnum, int clipboard, int count) {
if (answer <= count || imtnum > S)
return;
if (IMT[imtnum][clipboard] <= count)
return;
if (imtnum < 0)
return;
if (S <= imtnum) {
imtnum = S;
IMT[imtnum][clipboard] = count;
answer = min(answer, count);
return;
}
IMT[imtnum][clipboard] = count;
CalIMT(imtnum, imtnum, count + 1);
CalIMT(imtnum + clipboard, clipboard, count + 1);
CalIMT(imtnum - 1, clipboard, count + 1);
}
int main() {
cin >> S;
memset(IMT, 5, sizeof(IMT));
CalIMT(1, 0, 0);
cout << answer;
return 0;
}
'문제풀이 > 백준' 카테고리의 다른 글
[C++]백준 1051 - 숫자 정사각형 (0) | 2022.03.15 |
---|---|
[C++]백준 1708 - 볼록 껍질 (0) | 2022.03.15 |
[C++]백준 12869 - 뮤탈리스크 (0) | 2022.01.10 |
[C++]백준 2481 - 데스노트 (0) | 2022.01.10 |
[C++]백준 11559 - Puyo Puyo (0) | 2022.01.09 |