RUBY

[BOJ] N과 M (6) 15655 본문

PS/BOJ

[BOJ] N과 M (6) 15655

RUBY_루비 2020. 6. 30. 16:27

출처:: https://www.acmicpc.net/problem/15655

 

1. 문제 이해 및 해결과정

 -조합 

 : d(L,S)

 

2. 풀이방법

 

1.DFS

#N과 M (6)
#https://www.acmicpc.net/problem/15655
#조합
import sys
sys.stdin = open("input.txt","r")

def DFS(L,s):
    if L==m:
        for x in res:
            print(x,end=' ')
        print()
    else:
        for i in range(s,n+1):
            res[L]=a[i]
            DFS(L+1,i+1)


if __name__=="__main__":
    n, m = map(int, input().split())
    a=list(map(int,input().split()))
    a.sort()
    a.insert(0,0)
    res=[0]*m
    DFS(0,1)

3. 오답원인

 

4. 알게된 점

 

'PS > BOJ' 카테고리의 다른 글

[BOJ] N과 M (8) 15657  (0) 2020.06.30
[BOJ] N과 M (7) 15656  (0) 2020.06.30
[BOJ] N과 M (5) 15654  (0) 2020.06.30
[BOJ] 최소 힙  (0) 2020.06.24
[BOJ] 숨박꼭질 1697  (0) 2020.04.23
Comments