반응형
문제
https://www.acmicpc.net/problem/15657
문제 풀이
백트래킹
코드
import sys
input = sys.stdin.readline
N, M = map(int,input().split())
LIST = sorted(list(map(int,input().split())))
total = []
def back(s):
if len(total) == M:
print(*total)
return total
for i in range(s,len(LIST)):
total.append(LIST[i])
back(i)
total.pop()
back(0)
반응형
'알고리즘 > 백준 문제풀이' 카테고리의 다른 글
[boj] 백준 9095 1, 2, 3 더하기 python 풀이 (0) | 2023.08.11 |
---|---|
[boj] 백준 14503 로봇 청소기 python 풀이 (0) | 2023.08.10 |
[boj] 백준 15655 N과 M (7) python 풀이 (0) | 2023.08.08 |
[boj] 백준 21736 헌내기는 친구가 필요해 python 풀이 (0) | 2023.08.08 |
[boj] 백준 15655 N과 M (6) python 풀이 (0) | 2023.08.06 |