https://school.programmers.co.kr/learn/courses/30/lessons/42578
ํ๋ก๊ทธ๋๋จธ์ค
SW๊ฐ๋ฐ์๋ฅผ ์ํ ํ๊ฐ, ๊ต์ก, ์ฑ์ฉ๊น์ง Total Solution์ ์ ๊ณตํ๋ ๊ฐ๋ฐ์ ์ฑ์ฅ์ ์ํ ๋ฒ ์ด์ค์บ ํ
programmers.co.kr
ํ๋ฆฐ ์ฝ๋
import java.util.*;
class Solution {
private int answer = 0;
private Map<String, Integer> map1 = new HashMap<>();
private Map<Integer, Integer> map2 = new HashMap<>();
private int cnt = 0;
private int size;
private int[] res;
public int solution(String[][] clothes) {
for (String[] cloth : clothes) {
if (map1.containsKey(cloth[1])) {
map2.put(map1.get(cloth[1]), map2.get(map1.get(cloth[1])) + 1);
continue;
}
map1.put(cloth[1], cnt);
map2.put(cnt++, 1);
}
for (int i=1; i<=cnt; i++) {
size = i;
res = new int[i];
combinations(0, 0);
}
return answer;
}
private void combinations(int start, int count) {
if (count == size) {
int c = 1;
for (int i=0; i<size; i++) {
c *= map2.get(res[i]);
}
answer += c;
return;
}
for (int i=start; i<cnt; i++) {
res[count] = i;
combinations(i+1, count+1);
}
}
}
์กฐํฉ์ ํ๋ํ๋ ๋ง๋ค์ด์ ๊ณ์ฐํ๋ค.
์กฐํฉ์ ํธํ๊ฒ ๋ง๋ค๊ธฐ ์ํด map๋ ๋๊ฐ๋ ์ผ๋ค.
ํ๋๋ String์ Integer๋ก ๋งตํํ๋ ์ฉ๋์ด๊ณ , ๋๋จธ์ง ํ๋๋ ์ท ์ข ๋ฅ๋ณ ๊ฐ์๋ฅผ ์ธ๋ ์ฉ๋์ด๋ค.
์๊ฐ ์ด๊ณผ
์ ๋ต ์ฝ๋
import java.util.*;
class Solution {
public int solution(String[][] clothes) {
Map<String, Integer> map = new HashMap<>();
for (String[] cloth : clothes) {
map.put(cloth[1], map.getOrDefault(cloth[1], 0) + 1);
}
int answer = 1;
for (int i : map.values()) {
answer *= (i + 1);
}
return --answer;
}
}
์ท ์ข ๋ฅ๋ณ ๊ฐ์๋ฅผ ์ธ๋ ์ฉ๋์ map๋ง ๋จ๊ธฐ๊ณ ,
(์ข ๋ฅ ๋ณ ๊ฐ์ + ์ ํ์ ํ์ง ์๋ ๊ฒฝ์ฐ์ ์) ๋ฅผ ๊ณฑํ๋ค.
๋ง์ง๋ง์ ๋ชจ๋ ์ ํํ์ง ์๋ ๊ฒฝ์ฐ๋ฅผ ๋นผ์ค๋ค.
์ ์ ํ์ด์ฌ์ผ๋ก ํ ๋๋ ๋๊ฐ์ด ํ๋ฆฐ ๊ฒ ๊ฐ์๋ฐ
์ ๋๋ ์๊ฐ์ด ์ ๋ ๊น...
'๐ค > ์๊ณ ๋ฆฌ์ฆ ์ฌํ์ด๋' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
[ํ๋ก๊ทธ๋๋จธ์ค/Java] ์บ์ (1) | 2025.03.21 |
---|---|
[ํ๋ก๊ทธ๋๋จธ์ค/Java] ๊ทค ๊ณ ๋ฅด๊ธฐ (1) | 2025.03.12 |
[ํ๋ก๊ทธ๋๋จธ์ค/Java] ์ต์๊ฐ ๋ง๋ค๊ธฐ (2) | 2025.03.11 |