๐Ÿค–/์•Œ๊ณ ๋ฆฌ์ฆ˜ ์žฌํ™œ์šด๋™

[ํ”„๋กœ๊ทธ๋ž˜๋จธ์Šค/Java] ์˜์ƒ

sssbin 2025. 3. 17. 11:13

 

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๋งŒ ๋‚จ๊ธฐ๊ณ ,

(์ข…๋ฅ˜ ๋ณ„ ๊ฐœ์ˆ˜ + ์„ ํƒ์„ ํ•˜์ง€ ์•Š๋Š” ๊ฒฝ์šฐ์˜ ์ˆ˜) ๋ฅผ ๊ณฑํ•œ๋‹ค.

๋งˆ์ง€๋ง‰์— ๋ชจ๋‘ ์„ ํƒํ•˜์ง€ ์•Š๋Š” ๊ฒฝ์šฐ๋ฅผ ๋นผ์ค€๋‹ค.

 

 

์ „์— ํŒŒ์ด์ฌ์œผ๋กœ ํ’€ ๋•Œ๋„ ๋˜‘๊ฐ™์ด ํ‹€๋ฆฐ ๊ฒƒ ๊ฐ™์€๋ฐ

์™œ ๋‚˜๋Š” ์ƒ๊ฐ์ด ์•ˆ ๋‚ ๊นŒ...