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
- springboot
- 프로그래머스
- 백준 16719
- 백준 파이썬
- MSA
- 백준 16236
- java 기술면접
- 프로래머스
- 웹어플리케이션 서버
- Coroutine
- re.split
- Spring Boot
- 파이썬
- 백준 17779
- 백준 16235
- spring oauth
- java
- MySQL
- JPA
- JVM
- Spring
- spring cloud
- 백준
- 백준 15685
- sql 기술면접
- 백준 19238
- spring security
- with recursive
- 백준 17626
- Kotlin
Archives
- Today
- Total
시작이 반
[백준] 9375번 (python 파이썬) 본문
SMALL
조합을 구하는 문제이다.
하지만 같은 종류의 옷은 동시에 입을 수 없다.
즉, 같은 종류의 옷들을 묶은다음 해당 종류별로 경우의 수를 곱해주면 된다.
만약
hat headgear
sunglasses eyewear
turban headgear
가 있다면
headgear : 2개
eyewear : 1개이다.
(dict을 이용하면 된다.)
이러면
headgear을 고를 경우의 수 ( 2 + 1 (hat, turban, 아무것도 안고를 경우))
eyewaer을 고를 경우의 수 ( 1 + 1 (sunglasses, 아무것도 안고를 경우))
= 6인데 문제에서 아무것도 안입으면 안되기 때문에 여기서 아무것도 안입는 경우 1을 빼준다.
6-1이 답이다.
처음에는 파이썬의 combination을 사용하여 풀었지만 메모리 초과가 나왔다...
case = int(input())
for _ in range(case):
n = int(input())
items = list(input() for _ in range(n))
items_dict = dict()
for i in range(len(items)):
if items[i].split()[1] in items_dict:
items_dict[items[i].split()[1]] += 1
else:
items_dict[items[i].split()[1]] = 1
items = list(items_dict.values())
total = 1
for i in items:
total *= (i + 1)
print(total-1)
LIST
'알고리즘 > 백준' 카테고리의 다른 글
[백준] 4949번 (python 파이썬) (0) | 2021.03.04 |
---|---|
[백준] 9012번 (python 파이썬) (0) | 2021.03.04 |
[백준] 2004번 (python 파이썬) (2) | 2021.03.03 |
[백준] 2981번 (python 파이썬) (0) | 2021.03.01 |
[백준] 1541번 (python 파이썬) (0) | 2021.03.01 |