Home N과 M (11) 백준 15665번 백트래킹
Post
Cancel

N과 M (11) 백준 15665번 백트래킹

https://www.acmicpc.net/problem/15665

문제

N개의 자연수와 자연수 M이 주어졌을 때, 아래 조건을 만족하는 길이가 M인 수열을 모두 구하는 프로그램을 작성하시오.

N개의 자연수 중에서 M개를 고른 수열

같은 수를 여러 번 골라도 된다.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
n,m = map(int,input().split())
num = list(map(int,input().split()))
num.sort()
arr = [0]*m
isused = [False]*n

def func(k):
    if k==m:
        for i in range(m):
            print(arr[i], end=' ')
        print()
        return
    
    temp = 0 #중복수열인지 확인하는 임시 변수
    for i in range(n):
        if (not isused[i] and temp!=num[i]):
            arr[k] = num[i]
            temp = arr[k]
            func(k+1)
            
func(0)
This post is licensed under CC BY 4.0 by the author.

Comments powered by Disqus.