프로그래머스 신고 결과 받기
풀이
- 소요 시간 약 30분
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
class Solution {
public static int[] solution(String[] id_list, String[] report, int k) {
HashMap<String, Integer> map = new HashMap<>(); // 신고당한 횟수
String stopUser [] = new String[id_list.length]; // 정지 당해야할 유저
HashMap<String, ArrayList<String>> user_rpList = new HashMap<>();
int cnt = 0;
int[] answer = new int[id_list.length];
// 유저별 신고 당한 횟수 담는 맵 초기화, 유저가 신고한 아이디 리스트 초기화
for(var id : id_list) {
map.put(id, 0);
user_rpList.put(id, new ArrayList<>());
}
// 유저별 신고 당한 횟수
Loop:
for(int i=0; i < report.length; i++){
boolean check = false;
StringTokenizer st = new StringTokenizer(report[i]," ");
String user = st.nextToken();
String rp_user = st.nextToken();
var tmp = user_rpList.get(user); // 신고한 유저의 신고 목록 ArrayList
for(var name: tmp) {
if(name.equals(rp_user)) // 만약 이미 신고를 했었으면 목록에 추가하지 않고 건너뛰기
continue Loop;
}
user_rpList.get(user).add(rp_user);
map.replace(rp_user, map.get(rp_user)+1);
}
// 신고 당한 횟수가 정지 기준을 넘으면 정지처리
for(int i=0; i<id_list.length; i++) {
if (map.get(id_list[i]) >= k)
stopUser[cnt++] = id_list[i];
}
// 자기가 신고한 게정이 몇개 정지 되었는지 개수를 샘
for(int i=0; i< id_list.length; i++){
var tmp = user_rpList.get(id_list[i]);
for(var name : tmp){
for(int j=0; j< stopUser.length; j++){
if(name.equals(stopUser[j])){
answer[i]++;
}
}
}
}
return answer;
}
}