티스토리 뷰
최대수입 스케줄
#include <iostream>
#include <vector>
#include <queue>
#include <algorithm>
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
using namespace std;
struct Data {
int money;
int when;
Data(int a, int b){
money=a;
when=b;
}
bool operator<(Data &b){
return when>b.when;
}
};
int main() {
freopen("input.txt", "rt", stdin);
int a, b, i, j, n, res=0, max=-2147000000;
priority_queue<int> pQ;
vector<Data> T;
scanf("%d", &n);
for(i=0; 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>0; 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", res);
return 0;
}
'lecture > algorithm - c++' 카테고리의 다른 글
[c++] 원더랜드(Kruskal MST, Prim MST 알고리즘) (0) | 2021.01.17 |
---|---|
[c++] 이항계수(메모이제이션), 친구인가(Union&Find 자료구조) (0) | 2021.01.16 |
[c++] 최대힙, 최소힙 - priority_queue : 우선순위 큐 (0) | 2021.01.14 |
[c++] 송아지 찾기, 공주구하기(queue) (0) | 2021.01.14 |
[c++] 이진트리 넓이우선탐색, 그래프 최단거리 - BFS (0) | 2021.01.13 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- Java
- server side rendering
- 알고리즘
- 클래스
- 이진탐색
- 스텍
- BFS
- 최단경로
- 퀵정렬
- 재귀함수
- C
- 인접행렬
- 세마포어
- dfs
- javascript
- 병행프로세스
- 교착상태
- 구조체
- C++
- stackframe
- 동적프로그래밍
- Stack
- 운영체제
- 인접리스트
- 배열
- 자료구조
- client side rendering
- 소프트웨어
- react
- 입출력장치
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함