-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1092.cpp
45 lines (44 loc) · 1.05 KB
/
1092.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
40
41
42
43
44
45
#include <iostream>
#include <algorithm>
using namespace std;
int main() {
int N, M;
vector<int> crane;
vector<int> box;
cin >> N;
for (int i = 0; i < N; i++) {
int n;
cin >> n;
crane.push_back(n);
}
cin >> M;
for (int i = 0; i < M; i++) {
int m;
cin >> m;
box.push_back(m);
}
sort(crane.begin(), crane.end());
sort(box.begin(), box.end());
int cnt = 0;
// 불가능한 경우
if (crane.back() < box.back()) {
cout << -1;
return 0;
}
while (!box.empty()) {
cnt++;
// 크레인 가장 큰 무게 부터
for (int i = crane.size() - 1; i >= 0; i--) {
// 상자 가장 큰 무게 부터
for (int j = box.size() - 1; j >= 0; j--) {
// 옮길 수 있으면 삭제하고 다음 크레인으로
if (crane[i] >= box[j]) {
box.erase(box.begin() + j);
break;
}
}
}
}
cout << cnt;
return 0;
}