반응형
문제
https://www.acmicpc.net/problem/15655
코드
n, m = map(int, input().split())
nums = sorted(list(map(int, input().split())))
s = []
def dfs(start):
if len(s) == m:
print(' '.join(map(str,s)))
return
for i in range(start, len(nums)):
if nums[i] not in s:
s.append(nums[i])
dfs(i + 1)
s.pop()
dfs(0)
설명
https://looancheong.tistory.com/163
이 문제와 유사한 문제다.
차이점은 주어지는 수가 다르기 때문에 이를 유의해야 한다.
반응형
'개발 연습장 > 백준 문제풀이' 카테고리의 다른 글
[파이썬, Python] 백준 2417: 정수 제곱근 (0) | 2023.07.19 |
---|---|
[파이썬, Python] 백준 1072: 게임 (0) | 2023.07.18 |
[파이썬, Python] 백준 15654: N과 M (5) (0) | 2023.07.14 |
[파이썬, Python] 백준 1940: 주몽 (0) | 2023.07.13 |
[파이썬, Python] 백준 10026: 적록색약 (0) | 2023.07.12 |