본문 바로가기
백준 알고리즘

파이썬) 백준 알고리즘 | 15664번 : N과 M (10)

by 코딩새내기_ 2022. 3. 3.

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

 

15664번: N과 M (10)

한 줄에 하나씩 문제의 조건을 만족하는 수열을 출력한다. 중복되는 수열을 여러 번 출력하면 안되며, 각 수열은 공백으로 구분해서 출력해야 한다. 수열은 사전 순으로 증가하는 순서로 출력해

www.acmicpc.net

백준 15664 'N과 M (10)' 문제입니다.

N과 M에서 여러 조건들을 추가하였는데 그걸 중심으로 보시면 될 것 같습니다.

import sys
input = sys.stdin.readline

n, m = map(int, input().split())
nums = list(map(int, input().split()))
nums.sort()
index = []
s = []
result = []
def dfs():
    if len(s) == m:
        a = " ".join(map(str, s))
        if a not in result:
            print(a)
            result.append(a)
            return
        else:
            return

    for i in range(n):
        if i not in index:
            if not s or s[-1] <= nums[i]:
                index.append(i)
                s.append(nums[i])
                dfs()
                index.pop()
                s.pop()
dfs()

N과 M 기본 코드

import sys
input = sys.stdin.readline
s = []
n , m = map(int, input().split())

def dfs():
    if len(s) == m:
        print(" ".join(map(str, s)))
        return
    for i in range(1, n+1):
        if i not in s:
            s.append(i)
            dfs()
            s.pop()

dfs()

댓글