본문 바로가기

BOJ/C++

보석도둑

 

비싼 보석일수록 우선도가 높으며, 이를 넣을 수 있는 가방이 존재하는지를 확인하기만 하면 되기에,

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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#include <iostream>
#include <vector>
#include <algorithm>
#include <set>
#include <functional>
 
#define MAXX 300001
 
using namespace std;
 
typedef pair<intint> pp;
typedef long long ll;
 
int main()
{
    ios_base::sync_with_stdio(false);
    cin.tie(0);
 
    int n, k;
 
    cin >> n >> k;
 
    // vector<pp> jewels;
    multiset<pp, greater<pp> > ms;
    multiset<pp>::iterator it;
    for (int i = 0; i < n; i++)
    { //o(n)
        int m, v;
        cin >> m >> v;
 
        ms.insert(pp(v, m));
    }
 
    // for (it = ms.begin(); it != ms.end(); it++) cout << it->second << " " << it->first << '\n';
    ll sum = 0;
    //o(k)
    multiset<int> bag;
    multiset<int>::iterator idx;
 
    for (int i = 0; i < k; i++)
    {
        int c;
        cin >> c;
 
        //각 가방마다 최대 들 수 있는 무게 중 최대값을 찾아서 더한다.
        //o(nlogn)
        bag.insert(c);
    }
 
    for (it = ms.begin(); it != ms.end()&&!bag.empty(); it++)
    {
        idx = bag.lower_bound(it->second);
        if (idx != bag.end())
        {
            sum += it->first;
            bag.erase(idx);
        }
      
    }
 
    cout << sum << '\n';
    return 0;
}
 
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scripter

'BOJ > C++' 카테고리의 다른 글

두 배열의 합  (0) 2020.02.09
커피숍2  (0) 2020.02.09
괄호의 값  (0) 2020.02.09
[BOJ] 조약돌 꺼내기  (0) 2020.02.08
순열의 순서  (0) 2020.02.07