[BOJ] 2109 순회강연

Time Lapse :NONE

2109.cpp

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
#include <iostream>
#include <math.h>
#include <string>
#include <algorithm>
#include <cstring>
#include <vector>
#include <cstdio>
#include <queue>

using namespace std;

#define MAXSIZE 100000
int N;
int item1, item2;
vector<pair<int,int>> arr;
priority_queue<int> pq;
int ans=0;

int main(void)
{
cin>>N;
for(int i=0;i<N;i++)
{
cin>>item1>>item2;
arr.push_back(make_pair(item2,item1));
}
sort(arr.begin(),arr.end());
for(int i=0;i<arr.size();i++)
{
pq.push(-arr[i].second);
ans+=arr[i].second;
if(pq.size()>arr[i].first)
{
ans += pq.top();
pq.pop();
}
}
cout<<ans<<endl;
}
Author: Song Hayoung
Link: https://songhayoung.github.io/2020/07/30/PS/BOJ/2109/
Copyright Notice: All articles in this blog are licensed under CC BY-NC-SA 4.0 unless stating additionally.