그냥 n번째 피보나치 수를 계산하는 문제가 아니다. n번째 피보나치 수를 재귀 함수로 구할 때, fib(0)과 fib(1)이 몇 번씩 호출되는지를 묻는 문제다. 근데 딱히 다를 건 없다. 동적 계획법으로 푸는데, 누적하는 수가 피보나치 수가 아니라 0과 1의 회수일 뿐이다. 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 31 32 33 34 35 36 37 38 39 40 41 //#define _CRT_SECURE_NO_WARNINGS #include using namespace std; void fib(int n); int main() { int n; cin >> n; for (int i = 0; i >..
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647//#define _CRT_SECURE_NO_WARNINGS#include #include #include using namespace std; class Client {private: int age, order; char name[101];public: void setInfo(int age, char* name, int order) { int i; this->age = age; for (i = 0; name[i] != NULL; i++) this->name[i] = name[i]; this->name[i] = NULL; this->order = orde..
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556//#define _CRT_SECURE_NO_WARNINGS#include #include #include using namespace std; class Text {private: string text;public: void setText(string text) { this->text.clear(); this->text.append(text); } bool operatortext.length() text.length() == text.text.length()) { for (int i = 0; i text.length();..
사실 설명할 거리도 없는 문제이긴 한데.. 그리고 이 문제는 정렬 자체가 목적인 문제가 맞긴 하지만, 예외적으로 std::sort를 사용했다. 연산자 오버로딩을 사용한다는 것에 의의를 둔다랄까.. 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 31 32 33 34 35 36 37 38 39 40 41 42 43 44 //#define _CRT_SECURE_NO_WARNINGS #include #include #include using namespace std; class Position { private: int xpos, ypos; public: Position() { this->xpos = 0; this..
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 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 #include int main() { int input; scanf("%d", &input); int* arr = new int[8001]{ 0, }; for (size_t i = 0; i 0 ? (double)sum / input + 0.5 : (double)sum / input - 0.5; printf("%d\n%d\n", (int)sum_avg, mid); int tmp1 = -4001, tmp2 = 0; for (int i = 8000;..
- Total
- Today
- Yesterday
- 카카오
- 인공지능
- 컨트리뷰톤
- 1932
- 정렬
- 백트래킹
- 프로그래머스
- DP
- BaekJoon
- 파이썬
- 한화큐셀
- LG
- 이분탐색
- 백준
- c++
- 플로이드 와셜
- 브루트포스
- BFS
- 피보나치
- c
- 구현
- 알고리즘
- 코딩
- Dynamic Programming
- 완전탐색
- 동적 계획법
- webOS
- DFS
- PyPy3
- 오픈소스
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |