728x90
반응형
기본적인 백트래킹 문제이다.
def dfs(depth):
if depth == M:
print(*li)
return ;
for i in range(N):
if depth == 0 or li[-1] <= nums[i]:
li.append(nums[i])
dfs(depth+1)
li.pop()
N, M = map(int, input().split())
nums = sorted(map(int, input().split()))
li = []
dfs(0)
728x90
반응형
'Agorithm > 백준 알고리즘' 카테고리의 다른 글
백준 알고리즘 18429번 근손실(python) (0) | 2021.03.24 |
---|---|
백준 알고리즘 16922번 로마 숫자 만들기(python) (0) | 2021.03.24 |
백준 알고리즘 15656번 N과 M (7)(python) (0) | 2021.03.24 |
백준 알고리즘 15655번 N과 M (6)(python) (0) | 2021.03.24 |
백준 알고리즘 10819번 차이를 최대로(python) (0) | 2021.03.23 |