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 | 31 |
Tags
- opic
- 디피
- 바텀업
- 이진탐색
- stack 스택
- 오픽공부법
- XML주석
- 영어말하기
- 이진탐색 #나무 자르기
- English
- XML
- 메모이제이션
- 오픽노잼
- topdown
- 오픽노잼공부방법
- 오픽점수잘받는방법
- 오픽가격
- dp
- dynamicProgramming
- 다이나믹프로그래밍
- 탑다운
- fibo
- 영어회화
- 피보나치수열
- 오픽
- 주석
- 안드로이드주석
- 안드로이드
- ㅂ
Archives
RUBY
[BOJ] N과 M (9) 15663 R 본문
출처:: https://www.acmicpc.net/problem/15663
1. 문제 이해 및 해결과정
- 중복되는 경우의 수를 제외한 수열
2. 풀이방법
1. permutaion 라이브러리 이용 , set()이용
#N과 M (9)
#https://www.acmicpc.net/problem/15663
import sys
import itertools as it
sys.stdin = open("input.txt","r")
n, m = map(int, input().split())
a = list(map(int, input().split()))
for k in sorted(set(it.permutations(a,m))):
#print(k)
print(' '.join(map(str,k)))
2. DFS, counter이용
#N과 M (9) 2
#https://www.acmicpc.net/problem/15663
import sys
from collections import Counter
def DFS(L):
if L==m:
for x in res:
print(x,end=' ')
print()
return
else:
for i in range(len(cnt)):
if cnt[i]:
res[L]=num[i]
cnt[i]-=1
DFS(L+1)
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)
3. 오답원인
4. 알게된 점
join
print(' '.join(map(str,k)))
: k를 문자열로 연결해서 출력하라
- 만약 print()였다면
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 (11) 15665 (0) | 2020.07.01 |
---|---|
[BOJ] N과 M (10) 15664 R (0) | 2020.06.30 |
[BOJ] N과 M (8) 15657 (0) | 2020.06.30 |
[BOJ] N과 M (7) 15656 (0) | 2020.06.30 |
[BOJ] N과 M (6) 15655 (0) | 2020.06.30 |
Comments