[level 2] Title: 의상, Time: 0.03 ms, Memory: 10.3 MB -BaekjoonHub

This commit is contained in:
SSUM
2025-02-09 11:32:10 +09:00
parent 25323e105a
commit 5d333b6695
2 changed files with 127 additions and 0 deletions

View File

@@ -0,0 +1,108 @@
# [level 2] 의상 - 42578
[문제 링크](https://school.programmers.co.kr/learn/courses/30/lessons/42578?language=python3)
### 성능 요약
메모리: 10.3 MB, 시간: 0.03 ms
### 구분
코딩테스트 연습 > 해시
### 채점결과
정확성: 100.0<br/>합계: 100.0 / 100.0
### 제출 일자
2025년 02월 09일 11:32:05
### 문제 설명
<p>코니는 매일 다른 옷을 조합하여 입는것을 좋아합니다.</p>
<p>예를 들어 코니가 가진 옷이 아래와 같고, 오늘 코니가 동그란 안경, 긴 코트, 파란색 티셔츠를 입었다면 다음날은 청바지를 추가로 입거나 동그란 안경 대신 검정 선글라스를 착용하거나 해야합니다.</p>
<table class="table">
<thead><tr>
<th>종류</th>
<th>이름</th>
</tr>
</thead>
<tbody><tr>
<td>얼굴</td>
<td>동그란 안경, 검정 선글라스</td>
</tr>
<tr>
<td>상의</td>
<td>파란색 티셔츠</td>
</tr>
<tr>
<td>하의</td>
<td>청바지</td>
</tr>
<tr>
<td>겉옷</td>
<td>긴 코트</td>
</tr>
</tbody>
</table>
<ul>
<li>코니는 각 종류별로 최대 1가지 의상만 착용할 수 있습니다. 예를 들어 위 예시의 경우 동그란 안경과 검정 선글라스를 동시에 착용할 수는 없습니다. </li>
<li>착용한 의상의 일부가 겹치더라도, 다른 의상이 겹치지 않거나, 혹은 의상을 추가로 더 착용한 경우에는 서로 다른 방법으로 옷을 착용한 것으로 계산합니다.</li>
<li>코니는 하루에 최소 한 개의 의상은 입습니다.</li>
</ul>
<p>코니가 가진 의상들이 담긴 2차원 배열 clothes가 주어질 때 서로 다른 옷의 조합의 수를 return 하도록 solution 함수를 작성해주세요.</p>
<hr>
<h5>제한사항</h5>
<ul>
<li>clothes의 각 행은 [의상의 이름, 의상의 종류]로 이루어져 있습니다.</li>
<li>코니가 가진 의상의 수는 1개 이상 30개 이하입니다.</li>
<li>같은 이름을 가진 의상은 존재하지 않습니다.</li>
<li>clothes의 모든 원소는 문자열로 이루어져 있습니다.</li>
<li>모든 문자열의 길이는 1 이상 20 이하인 자연수이고 알파벳 소문자 또는 '_' 로만 이루어져 있습니다.</li>
</ul>
<h5>입출력 예</h5>
<table class="table">
<thead><tr>
<th>clothes</th>
<th>return</th>
</tr>
</thead>
<tbody><tr>
<td>[["yellow_hat", "headgear"], ["blue_sunglasses", "eyewear"], ["green_turban", "headgear"]]</td>
<td>5</td>
</tr>
<tr>
<td>[["crow_mask", "face"], ["blue_sunglasses", "face"], ["smoky_makeup", "face"]]</td>
<td>3</td>
</tr>
</tbody>
</table>
<h5>입출력 예 설명</h5>
<p>예제 #1<br>
headgear에 해당하는 의상이 yellow_hat, green_turban이고 eyewear에 해당하는 의상이 blue_sunglasses이므로 아래와 같이 5개의 조합이 가능합니다.</p>
<div class="highlight"><pre class="codehilite"><code>1. yellow_hat
2. blue_sunglasses
3. green_turban
4. yellow_hat + blue_sunglasses
5. green_turban + blue_sunglasses
</code></pre></div>
<p>예제 #2<br>
face에 해당하는 의상이 crow_mask, blue_sunglasses, smoky_makeup이므로 아래와 같이 3개의 조합이 가능합니다.</p>
<div class="highlight"><pre class="codehilite"><code>1. crow_mask
2. blue_sunglasses
3. smoky_makeup
</code></pre></div>
<hr>
<p>※ 공지 - 2023년 4월 21일 문제 지문이 리뉴얼되었습니다.</p>
> 출처: 프로그래머스 코딩 테스트 연습, https://school.programmers.co.kr/learn/challenges

View File

@@ -0,0 +1,19 @@
def solution(clothes):
arr=[]
temp=2
answer = 1
clothes.sort(key = lambda x:(x[1], x[0]))
maxvalue = len(clothes)
for i in range(0, maxvalue-1):
if (clothes[i][1] != clothes[i+1][1]):
arr.append(temp)
temp=2
else:
temp+=1
arr.append(temp)
for j in arr:
answer *= j
answer -= 1
return answer