728x90
반응형
Python
import sys
n, m = map(int, sys.stdin.readline().split())
arr = list(map(int, sys.stdin.readline().split()))
visit = []
arr.sort()
def back(k):
if len(visit)==m:
for x in visit:
print(x,end=" ")
print()
return
for i in range(n):
if arr[i] in visit:
continue
visit.append(arr[i])
back(k+1)
visit.pop()
back(0)
728x90
반응형
'Algorithm Problems' 카테고리의 다른 글
[백준] [Python] 7562번 나이트의 이동 - BFS (0) | 2021.05.11 |
---|---|
[백준] [USACO-Bronze] [Python] 적록색약 - BFS (0) | 2021.05.11 |
[백준] [Python] 11866번 요세푸스 문제 0 - 큐 (0) | 2021.05.08 |
[백준] [Python] 1182번 부분수열의 합 - 백트래킹 - [대표예제] (0) | 2021.05.07 |
[백준] [Python] N-Queen - 백트래킹 - [대표예제] (0) | 2021.05.06 |