반응형
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 | 31 |
Tags
- dfs #bfs #트리구조 #이진트리 #leetcode #파이썬 #python
- dfs #이진트리 #트리구조 #직렬화 #역직렬화 #파이썬 #리트코드 #leetcode #python
- 리트코드 #팰린드롬 #파이썬
- leetcode #subsets #dfs #itertools #python
- dfs #python #leetcode
- AsyncTask #doinbackground #스레드 #thread #android #안드로이드
- 2004 #조합 0의 개수 #백준
- dfs #bfs #이진트리 #파이썬 #리트코드
- 코틀린 #Do it #깡샘 #안드로이드
- leetcode #python #dfs #재귀
- 아스테리스크 #Asterisk #파이썬
- 파이썬 #zip
- dfs #bfs #leetcode #python
- context #android #getApplicationContext #activity #생명주기 #lifecycle
- 다익스트라 #dijkstra #leetcode #파이썬 #python #algorithm #787
- Python #leetcode #dfs #그래프 #백트래킹
- dfs #leetcode #python #graph #그래프
- dfs #python #leetcode #combination
- python #백준 #9375 #패션왕 #신해빈
- 해시테이블 #heapq #파이썬 #리트코드 #알고리즘
- 다익스트라 #알고리즘 #bfs #그리디 #다이나믹프로그래밍 #leetcode #python
- dfs #그래프 #graph #python #leetcode #course #schedule
- exoplayer #mediaplayer #엑소플레이어 #안드로이드 #android
- final #java #자바 #안드로이드
- python #백준 #2580 #스도쿠 #dfs #백트래킹
- gcd #최대공약수 #백준 #2981 #검문
- dfs #leetcode #python
- handler #looper #thread #runnable #핸들러 #루퍼 #스레드 #러너블
- dfs #bfs #트리구조 #이진트리 #leetcode #python #파이썬
- 백준 #파이썬 #bfs #백트래킹 #1697 #숨바꼭질
Archives
- Today
- Total
멋진 개발자가 되고 싶다
[LeetCode/Python] 77. 조합(Combinations) 본문
728x90
반응형
전체 수 n을 입력받아 k개의 조합을 리턴하라.
Example:
Input: n = 4, k = 2
Output: [ [2,4], [3,4], [2,3], [1,2], [1,3], [1,4], ]
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
|
class Solution:
def combine(self, n: int, k: int) -> List[List[int]]:
output = []
nums = [i + 1 for i in range(n)]
def dfs(k, stack=None):
if stack is None:
stack = []
if k == 0:
output.append(stack)
return
if stack:
for w in nums[stack[-1]-1:]:
if w not in stack:
dfs(k-1,stack + [w])
else:
for w in nums:
if w not in stack:
dfs(k-1,stack + [w])
dfs(k)
return output
|
cs |
해설:
dfs를 이용하였다.
코드가 그때그때 추가한 거라 조잡한데 일단은...
k = 0이 되면 조합이 완성된 것이므로
output에 stack을 넣어준다.
그리고 16번 줄 처럼 원래 진행하려 했지만
순서가 바뀐 조합도 출력이 되어버려서
( [1,2]와 [2,1]처럼)
w보다 큰 것들만 조합하자!
라 생각하고 line12~15처럼 진행하였다.
** 깔끔한 답안 **
2. DFS로 k개 조합 생성
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
class Solution:
def combine(self, n: int, k: int) -> List[List[int]]:
results = []
def dfs(elements, start: int, k: int):
if k == 0:
results.append(elements[:])
return
# 자신 이전의 모든 값을 고정하여 재귀 호출
for i in range(start, n + 1):
elements.append(i)
dfs(elements, i + 1, k - 1)
elements.pop()
dfs([], 1, k)
return results
|
cs |
해설:
1번 코드에서는 nums를 따로 만들어 진행하였지만
이 코드는 nums를 만들지 않고 range를 이용하여 진행하였다.
3. itertools 모듈 사용
1
2
3
|
class Solution:
def combine(self, n: int, k: int) -> List[List[int]]:
return list(itertools.combinations(range(1, n + 1), k))
|
cs |
해설:
순열 문제에서 itertools 모듈을 사용했듯이
조합 문제에서도 사용할 수 있다.
이 경우 실행 속도는 제일 빠르다.
728x90
반응형
'Algorithm Study > leetcode' 카테고리의 다른 글
[LeetCode/Python] 332. 일정 재구성(Reconstruct Itinerary) (0) | 2021.07.29 |
---|---|
[LeetCode/Python] 39. 조합의 합(Combination Sum) (0) | 2021.07.28 |
[LeetCode/Python] 1260. DFS와 BFS (0) | 2021.07.25 |
[LeetCode/Python] 17. Letter Combinations of a Phone Number (0) | 2021.07.24 |
[LeetCode/Python] 200. 섬의 개수(Number of Islands) (0) | 2021.07.24 |