Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 도커
- 최단거리
- python자료형
- python기본
- c언어 제어문
- 데베시 1주차
- git기초
- 인스타
- DP
- #코린이 #코딩 #할 수 있다
- 1주차(1)
- Workbench
- 참고X
- 그리디
- c언어 기본
- 스택
- 5장
- python기초
- 자료구조
- 백준
- 코테
- 파이썬 알고리즘 인터뷰
- c언어
- 인텔리제이
- 코딩테스트
- git 오류
- git오류
- Git
- 운체 1주차
- 4장
Archives
- Today
- Total
하루살이 개발자
[프로그래머스] Level1 - 신고결과 받기(Java) 본문
https://school.programmers.co.kr/learn/courses/30/lessons/92334
import java.util.*;
class Solution {
public int[] solution(String[] id_list, String[] report, int k) {
int[] answer = new int[id_list.length]; // 초기화
ArrayList<HashSet<String>> reported = new ArrayList<HashSet<String>>();
HashMap<String, Integer> idIdx = new HashMap<String, Integer>(); // 초기화
for (int i = 0; i < id_list.length; i++) {
idIdx.put(id_list[i], i); // 이름, 0~3숫자
/*
{
muzi : 0
frodo : 1
apeach : 2
neo : 3
}
*/
reported.add(i, new HashSet<String>());
}
for (String names : report) {
String reportPerson = names.split(" ")[0]; // "1,2 "에서 1
String reportedPerson = names.split(" ")[1]; // "1,2 "에서 2
System.out.println("reportPerson:" + reportPerson);
System.out.println("reportedPerson:" + reportedPerson);
reported.get(idIdx.get(reportedPerson)).add(reportPerson); //name 찾아서 넣기
System.out.println("reported:" + reported);
}
for (HashSet<String> set : reported) {
if (set.size() >= k) {
for (String name : set) {
answer[idIdx.get(name)]++;
}
}
}
return answer;
}
}
'코딩테스트' 카테고리의 다른 글
[프로그래머스] Level1 - 숫자 문자열과 영단어(Java) (0) | 2022.08.07 |
---|---|
[프로그래머스] Level1 - 신규아이디 추천(Java) (0) | 2022.08.07 |
[BaekJoon 15650번] N과 M(2) (Python) (0) | 2022.03.01 |
[BaekJoon 15649번] N과 M(1) (Python) (0) | 2022.03.01 |
[BaekJoon 20437번] 문자열 게임2(Python) (0) | 2022.02.24 |