aboutsummaryrefslogtreecommitdiff
path: root/cses/SortingAndSearching/Apartments/main.cpp
blob: ce2b1aeacaf6a65738a91cb0ebc38ebfb1597b1c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#include <algorithm>
#include<bits/stdc++.h>

using namespace std;

int main () {
	ios_base::sync_with_stdio(false);
	cin.tie(NULL);
  int n, m, k;
  cin >> n >> m >> k;
  vector<int> dsz(n);
  for (auto &x : dsz) cin >> x;
  vector<int> asz(m);
  for (auto &x : asz) cin >> x;
  set<int> taken;
  sort(dsz.begin(), dsz.end());
  sort(asz.begin(), asz.end());
  bool mbigger = m > n;
  if (mbigger) {
    for (int i = 0; i < m; i++) {
    }
  }

}