문제 설명
선물을 직접 전하기 힘들 때 카카오톡 선물하기 기능을 이용해 축하 선물을 보낼 수 있습니다. 당신의 친구들이 이번 달까지 선물을 주고받은 기록을 바탕으로 다음 달에 누가 선물을 많이 받을지 예측하려고 합니다.
- 두 사람이 선물을 주고받은 기록이 있다면, 이번 달까지 두 사람 사이에 더 많은 선물을 준 사람이 다음 달에 선물을 하나 받습니다.
- 예를 들어 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
오늘은 이 문제를 풀었다. 처음에 이 문제를 봤을때 다음 달 인걸 인지 못하고 굉장히 간단하게 코드를 작성하였다.
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
|
import java.util.*;
class Solution {
public int solution(String[] friends, String[] gifts) {
int answer = 0;
int array[][] = new int[friends.length][2];
for(int i = 0; i<gifts.length; i++){
String[] strChange1 = gifts[i].split("\\s");
for(int j =0; j < friends.length; j++){
if(strChange1[0].equals(friends[j]))
array[j][0]++;
if(strChange1[1].equals(friends[j]))
array[j][1]++;
}
}
for(int i = 0; i < friends.length; i++){
int tmp = array[i][0] - array[i][1];
if (answer < tmp)
answer = tmp;
}
return answer;
}
}
|
cs |
이렇게 굉장히 간단하게 생각했다. 심지어 map을 쓸 거라 생각하지 못휴ㅏ여 이차원 배열로 다 처리를 해버렸다. 하지만 이게 문제가 되었다. 왜냐하면 우리가 해야할 건 다음달 얼마를 받을지 예약해두는 건데 그 처리가 없었기 때문이다.
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 66 67 68 69 70 71 72 73 74 75 76 | import java.util.*; class Solution { public int solution(String[] friends, String[] gifts) { int n = friends.length; Map<String, Integer> friendIndex = new HashMap<>(); for (int i = 0; i < n; i++) { friendIndex.put(friends[i], i); } int[][] giftCounts = new int[n][2]; // 선물 기록 처리 for (String gift : gifts) { String[] parts = gift.split(" "); int giverIdx = friendIndex.get(parts[0]); int receiverIdx = friendIndex.get(parts[1]); giftCounts[giverIdx][0]++; giftCounts[receiverIdx][1]++; } // 각 친구의 선물 지수 계산 int[] giftIndex = new int[n]; for (int i = 0; i < n; i++) { giftIndex[i] = giftCounts[i][0] - giftCounts[i][1]; } // 다음 달 선물 예측 int[] nextMonthGifts = new int[n]; for (int i = 0; i < n; i++) { for (int j = i + 1; j < n; j++) { int givenByIToJ = countGiftsBetween(friends[i], friends[j], gifts); int givenByJToI = countGiftsBetween(friends[j], friends[i], gifts); if (givenByIToJ > givenByJToI) { nextMonthGifts[i]++; } else if (givenByIToJ < givenByJToI) { nextMonthGifts[j]++; } else { if (giftIndex[i] > giftIndex[j]) { nextMonthGifts[i]++; } else if (giftIndex[i] < giftIndex[j]) { nextMonthGifts[j]++; } } } } // 가장 많은 선물을 받을 친구가 받을 선물 수 계산 int maxGifts = 0; for (int i = 0; i < n; i++) { if (nextMonthGifts[i] > maxGifts) { maxGifts = nextMonthGifts[i]; } } return maxGifts; } // 두 사람 간의 선물 주고받은 횟수를 세는 함수 private int countGiftsBetween(String giver, String receiver, String[] gifts) { int count = 0; for (String gift : gifts) { String[] parts = gift.split(" "); if (parts[0].equals(giver) && parts[1].equals(receiver)) { count++; } } return count; } } | cs |
hashmap를 사용하여 index를 만들어준다.
giftCounts 배열을 통해 각 친구가 준 선물과 받은 선물을 기록한다.
각 친구의 선물 지수를 giftIndex 배열에 계산한다.
- 다음 달 선물 예측: 두 친구 간의 선물 기록을 비교하여 다음 달에 누가 선물을 받을지 예측합니다. 선물 준 횟수가 같다면 선물 지수를 비교한다.
- 최종 결과 반환: 다음 달에 가장 많은 선물을 받을 친구의 선물 수를 반환한다
두 사람 간의 선물 주고받은 횟수를 세는 함수를 사용하면 된다.
코테 공부를 하지 않아 굉장히 어렵게 풀었고, 굉장히 어려웠던 문제였다.
+조금 변형해서 최대 3개의 제안을 두고 풀어보았다.
import java.util.*;
import java.util.*;
class Solution {
public int solution(String[] friends, String[] gifts) {
int n = friends.length;
Map<String, Integer> friendIndex = new HashMap<>();
for (int i = 0; i < n; i++) {
friendIndex.put(friends[i], i);
}
int[][] giftCounts = new int[n][2];
for (String gift : gifts) {
String[] parts = gift.split(" ");
int giverIdx = friendIndex.get(parts[0]);
int receiverIdx = friendIndex.get(parts[1]);
giftCounts[giverIdx][0]++;
giftCounts[receiverIdx][1]++;
}
int[] giftIndex = new int[n];
for (int i = 0; i < n; i++) {
giftIndex[i] = giftCounts[i][0] - giftCounts[i][1];
}
int[] nextMonthGifts = new int[n];
for (int i = 0; i < n; i++) {
for (int j = i + 1; j < n; j++) {
int givenByIToJ = countGiftsBetween(friends[i], friends[j], gifts);
int givenByJToI = countGiftsBetween(friends[j], friends[i], gifts);
if (givenByIToJ > givenByJToI) {
nextMonthGifts[i]++;
} else if (givenByIToJ < givenByJToI) {
nextMonthGifts[j]++;
} else {
if (giftIndex[i] > giftIndex[j]) {
nextMonthGifts[i]++;
} else if (giftIndex[i] < giftIndex[j]) {
nextMonthGifts[j]++;
}
}
}
}
for (int i = 0; i < n; i++) {
nextMonthGifts[i] = Math.min(nextMonthGifts[i], 3);
}
int maxGifts = 0;
for (int i = 0; i < n; i++) {
if (nextMonthGifts[i] > maxGifts) {
maxGifts = nextMonthGifts[i];
}
}
return maxGifts;
}
private int countGiftsBetween(String giver, String receiver, String[] gifts) {
int count = 0;
for (String gift : gifts) {
String[] parts = gift.split(" ");
if (parts[0].equals(giver) && parts[1].equals(receiver)) {
count++;
}
}
return count;
}
}
'알고리즘' 카테고리의 다른 글
추억 점수 (0) | 2024.07.17 |
---|---|
달리기 경주 (0) | 2024.07.15 |
이웃한 칸 (1) | 2024.05.29 |
[Leetcode] Max Consecutive Ones (0) | 2024.04.30 |
[python] 1267번 휴대폰 요금 (0) | 2023.09.21 |