네카라쿠배 취준반 - 프로그래머스 문제 풀이/코딩 테스트 연습 - 해시
[2022 카카오 코딩테스트] 신고 결과 받기 - 자바 java (Hash, 해시)
개발자로 취직하기
2022. 2. 16. 05:00
0. 자세한 설명은 YouTube 영상으로
1. Hash를 활용한 solution
import java.util.*;
class Solution {
public int[] solution(String[] id_list, String[] report, int k) {
int[] answer = new int[id_list.length];
// 1. 중복 제거
HashSet<String> reportSet = new HashSet<String>();
for (String rep : report)
reportSet.add(rep);
// 2. report에서 각 사람이 신고당한 횟수를 countHash으로 정의하기
HashMap<String, ArrayList<String>> notifyListHash = new HashMap<>();
for (String rep : reportSet){
int blankIdx = rep.indexOf(" ");
String reporter = rep.substring(0, blankIdx);
String reportee = rep.substring(blankIdx + 1);
ArrayList<String> reporterList = notifyListHash.getOrDefault(reportee, null);
if(reporterList == null) reporterList = new ArrayList<>();
reporterList.add(reporter);
notifyListHash.put(reportee, reporterList);
}
// 3. notifyListHash를 기반으로 reportHash만들기
HashMap<String, Integer> reporterHash = new HashMap<>();
for (ArrayList<String> notifyList : notifyListHash.values())
if (notifyList.size() >= k)
for(String reporter : notifyList)
reporterHash.put(reporter, reporterHash.getOrDefault(reporter, 0) + 1);
// 4. reporterHash 정보를 answer에 옮겨담기
for (int i = 0; i < id_list.length; i++)
answer[i] = reporterHash.getOrDefault(id_list[i], 0);
return answer;
}
public static void main(String[] args){
Solution sol = new Solution();
String[] id_list = {"muzi", "frodo", "apeach", "neo"};
String[] report = {"muzi frodo","apeach frodo","frodo neo","muzi neo","apeach muzi"};
int k = 2;
// String[] id_list = {"con", "ryan"};
// String[] report = {"ryan con", "ryan con", "ryan con", "ryan con"};
// int k = 3;
sol.solution(id_list, report, k);
}
}