선물을 주고받은 경우를 구한다.
이때, muzi = 0, ryan = 1, frodo = 2, neo = 3으로 표시(dictionary로)
board판을 그리기
muzi | ryan | frodo | neo | |
---|---|---|---|---|
muzi | 0 | 0 | 2 | 0 |
ryan | 3 | 0 | 0 | 0 |
frodo | 1 | 1 | 0 | 0 |
neo | 1 | 0 | 0 | 0 |
board판을 이용해서 선물지수 구하기(gift_cnt)
선물받은 갯수를 temp리스트에 넣기
def solution(friends, gifts):
friends_dict = {}
for i in range(len(friends)):
friends_dict[friends[i]] = i
board = [[0] * len(friends) for _ in range(len(friends))]
for gift in gifts:
a, b = gift.split()
board[friends_dict[a]][friends_dict[b]] += 1
# print(board)
gift_cnt = [0] * len(friends)
for i in range(len(friends)):
cnt = sum(board[i])
for j in range(len(friends)):
cnt -= board[j][i]
gift_cnt[i] = cnt
# print(gift_cnt)
temp = [0] * len(friends)
for x in range(len(friends)-1):
for y in range(x+1,len(friends)):
if board[x][y] > board[y][x]:
temp[x] += 1
elif board[x][y] < board[y][x]:
temp[y] += 1
else:
if gift_cnt[x] > gift_cnt[y]:
temp[x] += 1
elif gift_cnt[x] < gift_cnt[y]:
temp[y] += 1
# print(temp)
return max(temp)