programmers.co.kr/learn/courses/30/lessons/42579 코딩테스트 연습 - 베스트앨범 스트리밍 사이트에서 장르 별로 가장 많이 재생된 노래를 두 개씩 모아 베스트 앨범을 출시하려 합니다. 노래는 고유 번호로 구분하며, 노래를 수록하는 기준은 다음과 같습니다. 속한 노래가 programmers.co.kr 가져온 풀이 #include #include #include #include using namespace std; bool compare(pair a, pair b) { return a.first > b.first; } bool compare_map_value(pair a, pair b) { return a.second > b.second; } vector solution(..