일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- MyPlaylist
- B대면노래방
- codetree
- 알고리즘
- DFS
- 프로그래머스
- 마라마라빔
- django
- SQL
- 최소스패닝트리
- DP
- BFS
- 동적계획법
- Bellman-Ford
- 백트래킹
- 실습
- 데이터베이스
- 백준
- Kruskal
- programmers
- 코드트리
- 소프트웨어공학
- 종합설계
- 파이썬
- 함밥
- minimum spanning tree
- 모각코
- Planned
- 장고
- 그리디알고리즘
Archives
- Today
- Total
Leta Learns
[모각코] 220806 Today I Learned 본문
<백준 9375번 - 패션왕 신해빈>
문제만 봤을 때는 금방 풀 수 있을 것 같았는데 전체적인 로직 파악을 제대로 하지 못해 꽤 오랜 시간이 걸린 문제였다.
테스트 케이스를 통과시키기 급급해하며 문제를 푸는 것보다 그 테케를 이용하여 전반적인 로직을 찾는 연습을 해야겠다.
import sys
input = sys.stdin.readline
t = int(input()) #test case 개수
for i in range(t):
n = int(input()) #의상 수
clothes = {}
for j in range(n):
c_n, c_t = input().split() #clothes_name, clothes_type
#종류별로 분류
if c_t not in clothes.keys():
clothes[c_t] = 1
else:
clothes[c_t] += 1
ans = 1
for i in clothes: #i: key
ans *= (clothes[i]+1) #해당 종류는 안 입는 경우 포함
print(ans-1) #알몸인 경우 제외
자세한 풀이는 아래 링크의 게시물에서 작성하였다.
2022.08.06 - [Coding/백준] - [Python] 백준 9375번 - 패션왕 신해빈
'HUFS > HUFS 모각코 캠프' 카테고리의 다른 글
[모각코] 220813 Today I Learned (0) | 2022.08.13 |
---|---|
[모각코] 220810 Today I Learned (0) | 2022.08.10 |
[모각코] 220803 Today I Learned (0) | 2022.08.04 |
[모각코] 220730 Today I Learned (2) | 2022.07.30 |
[모각코] 220727 Today I Learned (0) | 2022.07.27 |
Comments