가장 많이 받은 선물
선물을 직접 전하기 힘들 때 카카오톡 선물하기 기능을 이용해 축하 선물을 보낼 수 있습니다. 당신의 친구들이 이번 달까지 선물을 주고받은 기록을 바탕으로 다음 달에 누가 선물을 많이 받을지 예측하려고 합니다.
- 두 사람이 선물을 주고받은 기록이 있다면, 이번 달까지 두 사람 사이에 더 많은 선물을 준 사람이 다음 달에 선물을 하나 받습니다.
- 예를 들어
A
가B
에게 선물을 5번 줬고,B
가A
에게 선물을 3번 줬다면 다음 달엔A
가B
에게 선물을 하나 받습니다.
- 예를 들어
- 두 사람이 선물을 주고받은 기록이 하나도 없거나 주고받은 수가 같다면, 선물 지수가 더 큰 사람이 선물 지수가 더 작은 사람에게 선물을 하나 받습니다.
- 선물 지수는 이번 달까지 자신이 친구들에게 준 선물의 수에서 받은 선물의 수를 뺀 값입니다.
- 예를 들어
A
가 친구들에게 준 선물이 3개고 받은 선물이 10개라면A
의 선물 지수는 -7입니다.B
가 친구들에게 준 선물이 3개고 받은 선물이 2개라면B
의 선물 지수는 1입니다. 만약A
와B
가 선물을 주고받은 적이 없거나 정확히 같은 수로 선물을 주고받았다면, 다음 달엔B
가A
에게 선물을 하나 받습니다. - 만약 두 사람의 선물 지수도 같다면 다음 달에 선물을 주고받지 않습니다.
위에서 설명한 규칙대로 다음 달에 선물을 주고받을 때, 당신은 선물을 가장 많이 받을 친구가 받을 선물의 수를 알고 싶습니다.
친구들의 이름을 담은 1차원 문자열 배열 friends
이번 달까지 친구들이 주고받은 선물 기록을 담은 1차원 문자열 배열 gifts
가 매개변수로 주어집니다. 이때, 다음달에 가장 많은 선물을 받는 친구가 받을 선물의 수를 return 하도록 solution 함수를 완성해 주세요.
https://school.programmers.co.kr/learn/courses/30/lessons/258712
import java.util.*;
/**
* 두 사람이 선물을 주고받은 기록이 있다면
* 이번 달까지 두 사람 사이에 더 많은 선물을 준 사람이 다음 달에 선물을 하나 받습니다.
* <p>
* 두 사람이 선물을 주고받은 기록이 하나도 없거나 주고받은 수가 같다면
* 선물 지수가 더 큰 사람이 선물 지수가 더 작은 사람에게 선물을 하나 받습니다.
* <p>
* 선물 지수는 이번 달까지 자신이 친구들에게 준 선물의 수에서 받은 선물의 수를 뺀 값입니다.
* <p>
* 만약 두 사람의 선물 지수도 같다면 다음 달에 선물을 주고받지 않습니다.
*/
public class Main{
public static void main(String[] args) {
String[] friends = {"muzi", "ryan", "frodo", "neo"};
String[] gifts = {"muzi frodo", "muzi frodo", "ryan muzi", "ryan muzi", "ryan muzi", "frodo muzi", "frodo ryan", "neo muzi"};
// String[] friends = {"joy", "brad", "alessandro", "conan", "david"};
// String[] gifts = {"alessandro brad", "alessandro joy", "alessandro conan", "david alessandro", "alessandro david"};
// String[] friends = {"a", "b", "c"};
// String[] gifts = {"a b", "b a", "c a", "a c", "a c", "c a"};
solution(friends, gifts);
}
public static int solution(String[] friends, String[] gifts) {
GiftLogger logger = new GiftLogger(friends, gifts);
int result = logger.getNextMonthValue_Max();
System.out.println("result : " + result);
return result;
}
}
class GiftLogger {
String[] solution_friends;
String[] solution_gifts;
public GiftLogger(String[] solution_friends, String[] solution_gifts) {
this.solution_friends = solution_friends;
this.solution_gifts = solution_gifts;
HashMap<String, Friend> initFriends = new HashMap<>();
Arrays.stream(solution_friends).forEach(s -> {
initFriends.put(s, new Friend(s));
});
Arrays.stream(solution_gifts).forEach(s -> {
String[] t = s.split(" ");
Friend sender = Friend.getFriend(t[0]);
Friend receiver = Friend.getFriend(t[1]);
sender.addGiftLog(sender, receiver);
receiver.addGiftLog(sender, receiver);
});
}
public int getNextMonthValue_Max() {
List<Friend> allFriends = Friend.allFriends;
List<Integer> result = allFriends.stream().map(this::calcNextMonthValue).collect(ArrayList::new, ArrayList::add, ArrayList::addAll);
;
int resultMax = Collections.max(result);
var temp = Friend.allFriends;
return resultMax;
}
// 특정 인원이 받을 선물의 수
public int calcNextMonthValue(Friend target) {
List<Friend> allFriends = Friend.allFriends;
int result = 0;
for (Friend friend : allFriends) {
boolean giveMe = plzGiveMe(target, friend);
if (giveMe) {
result++;
System.out.println(friend.name + "->" + target.name + " | " + giveMe);
}
}
System.out.println(target.name + ":" + result);
System.out.println("============================================");
return result;
}
// 내가 선물을 받을 수 있을까?
public boolean plzGiveMe(Friend me, Friend you) {
int me_reciveGiftCount = me.reciveGiftsLog.getOrDefault(you, 0);
int me_sendGiftCount = me.sendGiftsLog.getOrDefault(you, 0);
// 주고 받은 선물이 있을때
if (me_reciveGiftCount > 0 || me_sendGiftCount > 0) {
// 주고받은 선물수가 같지 않을 때
if (me_sendGiftCount != me_reciveGiftCount) {
return me_reciveGiftCount < me_sendGiftCount;
} else {
if (me.giftScore == you.giftScore) {
return false;
}
}
}
// 주고받은 적이 없을 때
return me.giftScore > you.giftScore;
}
}
class Friend {
static List<Friend> allFriends = new ArrayList<>();
String name;
int giftScore = 0;
Map<Friend, Integer> reciveGiftsLog = new HashMap<>(); //내가 받은 선물
Map<Friend, Integer> sendGiftsLog = new HashMap<>(); // 내가 준 선물
public Friend(String name) {
this.name = name;
allFriends.add(this);
}
@Override
public String toString() {
return "Friend{" +
"name='" + name + '\'' +
", giftScore=" + giftScore +
'}';
}
public void addGiftLog(Friend sender, Friend reciver) {
if (this.equals(sender)) { // 내가 준경우
this.sendGiftsLog.put(reciver, this.sendGiftsLog.getOrDefault(reciver, 0) + 1);
this.giftScore++;
} else if (this.equals(reciver)) { // 내가 받은 경우
this.reciveGiftsLog.put(sender, this.reciveGiftsLog.getOrDefault(sender, 0) + 1);
this.giftScore--;
}
}
public boolean equals(String name) {
return name.equals(this.name);
}
public static Friend getFriend(String name) {
for (Friend f : allFriends) {
if (f.equals(name)) {
return f;
}
}
throw new RuntimeException("누구세용?");
}
}