Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 디피
- 이진탐색 #나무 자르기
- 오픽노잼공부방법
- 주석
- English
- 피보나치수열
- 영어회화
- XML주석
- 다이나믹프로그래밍
- 메모이제이션
- dynamicProgramming
- stack 스택
- XML
- 오픽
- opic
- 오픽공부법
- 오픽가격
- 바텀업
- topdown
- 오픽점수잘받는방법
- dp
- ㅂ
- 안드로이드
- fibo
- 영어말하기
- 이진탐색
- 오픽노잼
- 안드로이드주석
- 탑다운
Archives
RUBY
[BOJ] N과 M (6) 15655 본문
출처:: 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