반응형
문제
https://www.acmicpc.net/problem/15663
문제 풀이
백트래킹,,
코드
import sys
input = sys.stdin.readline
N, M = map(int,input().split())
LIST = sorted(list(map(int,input().split())))
total = []
visited = [0 for _ in range(N)]
def back():
if len(total) == M:
print(*total)
return
ex = 0
for i in range(len(LIST)):
if ex != LIST[i] and visited[i] == 0:
total.append(LIST[i])
visited[i] = 1
back()
ex = total.pop()
visited[i] = 0
back()
반응형
'알고리즘 > 백준 문제풀이' 카테고리의 다른 글
[boj] 백준 15649 N과 M (1) python 풀이 (0) | 2023.07.25 |
---|---|
[boj] 백준 2468 안전 영역 python 풀이(bfs) (0) | 2023.07.25 |
[boj] 백준 18352 특정 거리의 도시 찾기 python 풀이 (0) | 2023.07.22 |
[boj] 백준 11444 피보나치 수 6 python 풀이 (0) | 2023.07.21 |
[boj] 백준 2589 보물섬 python 풀이 (0) | 2023.07.18 |