인프런 커뮤니티 질문&답변

wlfansdl님의 프로필 이미지
wlfansdl

작성한 질문수

it 취업을 위한 알고리즘 문제풀이 입문 (with C/C++) : 코딩테스트 대비

연산자 오버로딩을 하면

해결된 질문

작성

·

170

0

안녕하세요

구조체 내에 연산자 오버로딩을 하면 Sort함수에 쓰이는 원리가 궁금합니다.

참조형 매개변수로 B를 받고
A > B 이렇게하면 현재값이 앞에 놓이니깐 내림차순으로 정렬된다는게 어떤의미인지 이해가 잘 안됩니다 ㅠㅠ

#include<stdio.h>
#include<algorithm>
#include<queue>
#include<vector>
using namespace std;
struct Data{
	int money;
	int when;
	Data(int a, int b){
		money=a;
		when=b;
	}
	bool operator<(const Data &b)const{
		return when>b.when;
	}	
};
int main(){
	freopen("input.txt", "rt", stdin);
	int n, i, j, a, b, res=0, max=-2147000000;	
	vector<Data> T;
	priority_queue<int> pQ;
	scanf("%d", &n);
	for(i=1; i<=n; i++){
		scanf("%d %d", &a, &b);
		T.push_back(Data(a, b));
		if(b>max)
			max=b;
	}
	sort(T.begin(), T.end());	
	j=0;
	for(i=max; i>=1; i--){	
		for( ; j<n; j++){
			if(T[j].when<i) break;			
			pQ.push(T[j].money);
		}
		if(!pQ.empty()){
			res+=pQ.top();
			pQ.pop();
		}
	}
	printf("%d\n",res);
	return 0;
}

답변 1

0

김태원님의 프로필 이미지
김태원
지식공유자

안녕하세요^^

사실 저도 원리는 모릅니다. 그냥 왜워서 사용합니다.

 

wlfansdl님의 프로필 이미지
wlfansdl

작성한 질문수

질문하기