백준-9375 : 패션왕 신해빈
https://www.acmicpc.net/problem/9375
풀의
- 입력받은 옷을 종류별로 카운트
- 조합을 이용하여 입을수 있는 방법의 수를 구한다(안 입는 경우는 제외)
코드 (java)
import java.util.HashMap;
import java.util.Scanner;
public class Baejoon9375 {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
for (int i = 0; i < n; i++) {
int m = sc.nextInt();
if (m == 0) {
System.out.println("0");
continue;
}
int result = 1;
HashMap<String, Integer> clothesMap = new HashMap<>();
sc.nextLine(); // 버퍼 비우기
for (int j = 0; j < m; j++) {
String[] clothesInfo = sc.nextLine().split(" ");
clothesMap.put(clothesInfo[1], clothesMap.getOrDefault(clothesInfo[1], 0) + 1);
}
for (String key : clothesMap.keySet()) {
int tempInt = clothesMap.get(key);
result *= tempInt + 1;
}
System.out.println(result - 1);
}
}
}
'Algorithm' 카테고리의 다른 글
[BFS] 백준-1339 단어 수학 골드4 (0) | 2023.04.09 |
---|---|
[BFS] 백준-7576 토마토 골드5 (1) | 2023.04.08 |
[완전 탐색] 백준-12100 2048 (Easy) 골드2 (Java) (0) | 2023.04.06 |
[완전 탐색, BFS] 백준-14502 연구소 골드4 (Java) (0) | 2023.04.05 |
[Stack] 백준-10773 제로 실버4 (Java) (0) | 2023.04.05 |