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
- topdown
- dp
- 영어회화
- opic
- 메모이제이션
- XML주석
- ㅂ
- 안드로이드주석
- 오픽노잼공부방법
- English
- dynamicProgramming
- 주석
- 오픽노잼
- 이진탐색 #나무 자르기
- 다이나믹프로그래밍
- 탑다운
- 영어말하기
- 오픽가격
- 오픽공부법
- 이진탐색
- 피보나치수열
- 바텀업
- stack 스택
- 오픽점수잘받는방법
- 안드로이드
- XML
- 오픽
- 디피
- fibo
Archives
RUBY
[BOJ] N과 M (10) 15664 R 본문
출처:: https://www.acmicpc.net/problem/15664
1. 문제 이해 및 해결과정
-중복되는 경우의 수를 제외한 조합
2. 풀이방법
1.조합 라이브러리
#N과 M (10)
#https://www.acmicpc.net/problem/15664
import sys
import itertools as it
sys.stdin = open("input.txt","r")
n, m = map(int, input().split())
a = list(map(int, input().split()))
a.sort()
for k in sorted(set(it.combinations(a,m))):
#print(k)
print(' '.join(map(str,k)))
2. 각 수의 개수를 이용하는 방법, DFS
#N과 M (10) 2
#https://www.acmicpc.net/problem/15664
import sys
from collections import Counter
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,len(cnt)):
if cnt[i]:
res[L]=num[i]
cnt[i]-=1
DFS(L+1,i)
cnt[i]+=1
if __name__=="__main__":
n, m = map(int, input().split())
a = sorted(list(map(int, input().split())))
num, cnt = map(list, zip(*list(Counter(a).items())))
res=[0]*m
DFS(0,0)
3. 오답원인
4. 알게된 점
zip(*iterable)
: 동일한 개수로 이루어진 자료형을 묶어 주는 역할을 하는 함수
counter()
from collections import Counter
Counter('hello') # Counter({'l': 3, 'o': 2, 'h': 1, 'e': 1})
num, cnt = map(list, zip(*list(Counter(a).items())))
: 이 코드가 숫자 별 개수 를 각각 세서 만들어주는 코드이다.
결과는 이와 같다.
c.items() # convert to a list of (elem, cnt) pairs
Counter(dict(list_of_pairs)) # convert from a list of (elem, cnt) pairs
print(Counter(a).items()) ##dict_items([(1, 2), (2, 2)])
print(list(Counter(a).items())) ##[(1, 2), (2, 2)]
print(zip(*list(Counter(a).items()))) ##<zip object at 0x020DB6C8>
'PS > BOJ' 카테고리의 다른 글
[BOJ] N과 M (12) 15666 (0) | 2020.07.01 |
---|---|
[BOJ] N과 M (11) 15665 (0) | 2020.07.01 |
[BOJ] N과 M (9) 15663 R (0) | 2020.06.30 |
[BOJ] N과 M (8) 15657 (0) | 2020.06.30 |
[BOJ] N과 M (7) 15656 (0) | 2020.06.30 |
Comments