일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- mobaXTerm
- Backjoon
- docker
- 백준
- Singleton Pattern
- BubbleSort
- Programmers
- java
- github
- Codility
- Dynamic Programming
- 파이썬
- GCP
- cpu scheduling
- KAKAO
- Python
- Top-down
- k8s
- easy
- Kotlin
- 그리디
- kubernetes
- 피보나치
- golang
- LeetCode
- GKE
- 알고리즘
- go
- Observer Pattern
- Today
- Total
목록Dynamic Programming (9)
To Be Developer
https://www.acmicpc.net/problem/9095 9095번: 1, 2, 3 더하기 문제 정수 4를 1, 2, 3의 합으로 나타내는 방법은 총 7가지가 있다. 합을 나타낼 때는 수를 1개 이상 사용해야 한다. 1+1+1+1 1+1+2 1+2+1 2+1+1 2+2 1+3 3+1 정수 n이 주어졌을 때, n을 1, 2, 3의 합으로 나타내는 방법의 수를 구하는 프로그램을 작성하시오. 입력 첫째 줄에 테스트 케이스의 개수 T가 주어진다. 각 테스트 케이스는 한 줄로 이루어져 있고, 정수 n이 주어진다. n은 양수이며 11보다 작다. 출력 각 www.acmicpc.net [GoLang 풀이] package main import ( "fmt" ) // 문제의 조건에서 정수가 최대 11 까지라고 제..
https://www.acmicpc.net/problem/1463 1463번: 1로 만들기 첫째 줄에 1보다 크거나 같고, 106보다 작거나 같은 정수 N이 주어진다. www.acmicpc.net [GoLang | Top-Down 풀이] package main import ( "fmt" "strconv" ) //var arr [10000001]int64 // 속도는 배열이 더 빠르나, map을 사용하여 풀어보겠습니다. // key를 int64 타입 value를 int 로 가지는 map 변수를 선언합니다. var arr map[int64]int = make(map[int64]int) // 메인 함수 부분 func main() { // 키보드 입력을 받을 변수 var inputData string // in..
https://leetcode.com/problems/unique-paths/ Loading... Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com [GoLang 풀이] package main import "fmt" type position struct { x, y int } // key는 position Struct, value는 int로 가지는 map 변수 var pathMap map[position]int = make(map[position]int) // make(map[po..