https://www.acmicpc.net/problem/15666
처음 N 과 M 문제를 풀었을때는 너무 어려웠는데 지금은 여러번 하다보니 그냥 외우듯이 해버리게 되었다.
import sys
input = sys.stdin.readline
def backtrack(part,index):
global numbers
global m , n
if len(part) == m:
print(' '.join(map(str,part)))
return
for i in range(len(numbers)):
if index == 0 or index > 0 and part[-1] - 1 < numbers[i]:
part.append(numbers[i])
backtrack(part,i)
part.pop()
n , m = map(int,input().split())
numbers = list(set(map(int,input().split())))
numbers.sort()
backtrack([],0)
'코딩테스트' 카테고리의 다른 글
[python 백준] 11660번 : 구간 합 구하기 5 (0) | 2024.10.11 |
---|---|
[python 백준] 1149 번 : RGB (0) | 2024.10.10 |
[python 백준] 1932번 : 정수 삼각형 (0) | 2024.09.24 |
[python 백준] 14500 번 : 테트로미노 (골드 4) (0) | 2024.09.23 |
[python 백준] 9019번 : DSLR (1) | 2024.09.13 |