선물을 직접 전하기 힘들 때 카카오톡 선물하기 기능을 이용해 축하 선물을 보낼 수 있습니다. 당신의 친구들이 이번 달까지 선물을 주고받은 기록을 바탕으로 다음 달에 누가 선물을 많이 받을지 예측하려고 합니다.
위에서 설명한 규칙대로 다음 달에 선물을 주고받을 때, 당신은 선물을 가장 많이 받을 친구가 받을 선물의 수를 알고 싶습니다.
친구들의 이름을 담은 1차원 문자열 배열 friends 이번 달까지 친구들이 주고받은 선물 기록을 담은 1차원 문자열 배열 gifts가 매개변수로 주어집니다. 이때, 다음달에 가장 많은 선물을 받는 친구가 받을 선물의 수를 return 하도록 solution 함수를 완성해 주세요.
friends | gifts | result |
---|---|---|
["muzi", "ryan", "frodo", "neo"] | ["muzi frodo", "muzi frodo", "ryan muzi", "ryan muzi", "ryan muzi", "frodo muzi", "frodo ryan", "neo muzi"] | 2 |
["joy", "brad", "alessandro", "conan", "david"] | ["alessandro brad", "alessandro joy", "alessandro conan", "david alessandro", "alessandro david"] | 4 |
["a", "b", "c"] | ["a b", "b a", "c a", "a c", "a c", "c a"] | 0 |
문제에서 선물을 주는쪽과 받는쪽을 구분하여 다루고 있기 때문에 2차원 배열을 만들어서 행을 주는사람 열을 받는사람으로 정하고 테이블을 만들었다.
gifts를 통해서 giftsTable,giftScoreList 에 선물수를 증감시켜준다.
giftsTable을 다시 탐색하여서 조건에 맞는 비교후 nextMonthGiftScore에 선물수를 증가시켜준다.
nextMonthGiftScore의 최대값을 answer에 담아준다.
import java.util.ArrayList;
import java.util.Collections;
import java.util.HashMap;
class Solution {
public int solution(String[] friends, String[] gifts) {
int answer = 0;
HashMap<String, Integer> friendsIdx = new HashMap<>(); //이름별 인덱스를 저장하는 map
ArrayList<ArrayList<Integer>> giftsTable = new ArrayList<>(); //선물 주고받은 현황 테이블(행:주는사람,열:받는사람)
ArrayList<Integer> giftScoreList = new ArrayList<>(); //이름별 선물을 준횟수와 받은횟수 체크
ArrayList<Integer> nextMonthGiftScore = new ArrayList<>(); //다음달 받을 선물 수
//초기화
for (int i = 0; i < friends.length; i++) {
friendsIdx.put(friends[i], i);
giftScoreList.add(0);
nextMonthGiftScore.add(0);
}
//초기화
for (int i = 0; i < friends.length; i++) {
giftsTable.add(new ArrayList<>());
for (int j = 0; j < friends.length; j++) {
giftsTable.get(i).add(0);
}
}
//giftsTable,giftScoreList 데이터 넣기
for (int i = 0; i < gifts.length; i++) {
String[] friendsNames = gifts[i].split(" ");
int giver_idx = friendsIdx.get(friendsNames[0]);
int taker_idx = friendsIdx.get(friendsNames[1]);
int giftsCount = giftsTable.get(giver_idx).get(taker_idx);
giftsTable.get(giver_idx).set(taker_idx, ++giftsCount);
Integer giverScore = giftScoreList.get(giver_idx) + 1;
Integer takerScore = giftScoreList.get(taker_idx) - 1;
giftScoreList.set(giver_idx, giverScore);
giftScoreList.set(taker_idx, takerScore);
}
//다음달 선물받을 사람 판별
for (int i = 0; i < giftsTable.size(); i++) {
for (int j = i + 1; j < giftsTable.get(i).size(); j++) {
//두 사람이 선물을 주고받은 기록이 있다면, 이번 달까지 두 사람 사이에 더 많은 선물을 준 사람이 다음 달에 선물을 하나 받습니다.
if (giftsTable.get(i).get(j) != giftsTable.get(j).get(i)) {
int friendAGiftCount = giftsTable.get(i).get(j);
int friendBGiftCount = giftsTable.get(j).get(i);
if (friendAGiftCount > friendBGiftCount) {
nextMonthGiftScore.set(i, nextMonthGiftScore.get(i) + 1);
} else {
nextMonthGiftScore.set(j, nextMonthGiftScore.get(j) + 1);
}
} else { //두 사람이 선물을 주고받은 기록이 하나도 없거나 주고받은 수가 같다면, 선물 지수가 더 큰 사람이 선물 지수가 더 작은 사람에게 선물을 하나 받습니다.
if (giftScoreList.get(i) > giftScoreList.get(j)) {
nextMonthGiftScore.set(i, nextMonthGiftScore.get(i) + 1);
} else if (giftScoreList.get(i) < giftScoreList.get(j)) {
nextMonthGiftScore.set(j, nextMonthGiftScore.get(j) + 1);
}
}
}
}
answer = Collections.max(nextMonthGiftScore);
return answer;
}
}