728x90
반응형
기본적인 백트래킹 문제이다. 15663번 N과 M (9)와 비슷한 문제이다.
def dfs(depth):
if depth == M:
s = ' '.join(map(str, li))
if s not in d:
d[s] = 1
print(s)
return ;
for i in range(N):
li.append(nums[i])
dfs(depth+1)
li.pop()
N, M = map(int, input().split())
nums = sorted(map(int, input().split()))
d = {}; li = []
dfs(0)
728x90
반응형
'Agorithm > 백준 알고리즘' 카테고리의 다른 글
백준 알고리즘 17608번 막대기(python) (0) | 2021.03.24 |
---|---|
백준 알고리즘 15666번 N과 M (12)(python) (0) | 2021.03.24 |
백준 알고리즘 15664번 N과 M (10)(python) (0) | 2021.03.24 |
백준 알고리즘 15663번 N과 M (9)(python) (0) | 2021.03.24 |
백준 알고리즘 19949번 영재의 시험(python) (0) | 2021.03.24 |