일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- KAKAO
- 백준
- LeetCode
- github
- 알고리즘
- Kotlin
- go
- k8s
- Dynamic Programming
- easy
- docker
- Programmers
- 그리디
- kubernetes
- 피보나치
- golang
- 파이썬
- BubbleSort
- Singleton Pattern
- Top-down
- cpu scheduling
- Codility
- GCP
- mobaXTerm
- java
- Backjoon
- Observer Pattern
- Python
- GKE
- Today
- Total
목록알고리즘 (44)
To Be Developer
https://www.acmicpc.net/problem/2579 2579번: 계단 오르기 계단 오르기 게임은 계단 아래 시작점부터 계단 꼭대기에 위치한 도착점까지 가는 게임이다. 과 같이 각각의 계단에는 일정한 점수가 쓰여 있는데 계단을 밟으면 그 계단에 쓰여 있는 점수를 얻게 된다. 예를 들어 와 같이 시작점에서부터 첫 번째, 두 번째, 네 번째, 여섯 번째, 계단을 밟아 도착점에 도달하면 총 점수는 10 + 20 + 25 + 20 = 75점이 된다. 계단 오르는 데는 다음과 같은 규칙이 있다. 계단은 한 번에 한 계단 www.acmicpc.net [Python 풀이] stScore = [] # 계단의 수 stairs = int(input()) # 최대 300개의 계단이 존재 mxScore = [No..
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..
https://leetcode.com/problems/climbing-stairs/ 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 [Python 풀이] ''' 문제 설명 - 계단오르기 문제 계단을 오를 때 두 가지 방법이 있는데 첫 번째, 한 칸씩 오른다. 두 번째, 두 칸씩 오른다. if stairs == 1: return 1 # 계단을 한 칸 오르는 법은 한칸 오르는 한가지 방법 뿐 if stairs == 2 : # 계단이 두 칸 일 경우 return 2..
https://leetcode.com/problems/monotonic-array/ class Solution(object): def isMonotonic(self, A): """ :type A: List[int] :rtype: bool """ # A의 길이 ln = len(A) # A의 길이가 1이면 무조건 True if ln == 1: return True # Decrease면 False, increase 면 True inDe = None # 1~ln-1 까지 반복 for i in range(1, ln): # 처음 inDe 가 비어있는 것은 A[i-1] 과 A[i]는 같다는 것을 뜻함 if inDe == None and A[i-1] != A[i]: # Decrease if A[i-1] > A[i]: ..