일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- Combination
- 매일11시
- 홈화면
- 1260
- 11054
- Python
- 11057
- 코테
- itertools
- LCS
- 백준
- 6603
- 11053
- 안드로이드
- 파이썬
- 9095
- 최소공배수
- expo
- 괄호
- lcm
- 1182
- 뒤로가기
- 순열
- 앱
- 나머지
- 코틀린
- permutation
- Android
- 11기
- Kotlin
Archives
- Today
- Total
황소개발자
백준 15663 파이썬 python : N과 M (9) @@황소처럼 우직하게@@ 본문
반응형
n, m = map(int, input().split())
num_list = list(map(int, input().split()))
num_list.sort()
a = [0 for i in range(m)]
c = [False for i in range(n)]
ans = []
def go(idx, n, m):
if idx == m:
ans.append(a.copy())
return
for i in range(n):
if c[i] == False:
c[i] = True
a[idx] = num_list[i]
go(idx + 1, n, m)
c[i] = False
go(0, n, m)
ans.sort()
print(' '.join(map(str, ans[0])))
for i in range(1, len(ans)):
if ans[i - 1] != ans[i]:
print(' '.join(map(str, ans[i])))
반응형
'백준 문제 풀이' 카테고리의 다른 글
백준 15665 파이썬 python : N과 M (11) @@황소처럼 우직하게@@ (0) | 2020.03.02 |
---|---|
백준 15664 파이썬 python : N과 M (10) @@황소처럼 우직하게@@ 시간초과 안나넹 (0) | 2020.03.02 |
백준 15657 파이썬 python : N과 M (8) @@황소처럼 우직하게@@ (0) | 2020.03.02 |
백준 15656 파이썬 python : N과 M (7) @@황소처럼 우직하게@@ (0) | 2020.03.02 |
백준 15655 파이썬 python : N과 M (6) @@황소처럼 우직하게@@ (0) | 2020.03.02 |
Comments