#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
#define f first
#define s second
#define pb push_back
#define ep emplace
#define eb emplace_back
#define lb lower_bound
#define ub upper_bound
#define all(x) x.begin(), x.end()
#define rall(x) x.rbegin(), x.rend()
#define uniquev(v) sort(all(v)), (v).resize(unique(all(v)) - (v).begin())
#define mem(f,x) memset(f , x , sizeof(f))
#define sz(x) (int)(x).size()
#define __lcm(a, b) (1ll * ((a) / __gcd((a), (b))) * (b))
#define mxx *max_element
#define mnn *min_element
#define cntbit(x) __builtin_popcountll(x)
#define len(x) (int)(x.length())
const int N = 2e5 + 10;
signed main() {
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
int n, m, o;
cin >> n >> m >> o;
multiset <pair <int, int>> st;
for (int i = 0; i < n; i++) {
int a, b;
cin >> a >> b;
st.insert({b, a});
}
vector <pair <int, int>> save;
for (int i = 0; i < m; i++) {
int a, b;
cin >> a >> b;
save.pb({a, -b});
}
vector <ll> dis;
sort(all(save), greater <pair <int, int>> ());
for (auto x : save) {
auto it = st.lower_bound({-x.s, -1e9});
if (it == st.end())
continue;
ll diff = x.f - it->second;
dis.pb(diff);
st.erase(it);
}
ll ans = 0;
sort(all(dis), greater <ll> ());
for (int i = 0; i < min(sz(dis), o); i++) {
ans += max(dis[i], (ll)0);
}
cout << ans << '\n';
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
344 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
344 KB |
Output is correct |
2 |
Correct |
1 ms |
348 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
348 KB |
Output is correct |
2 |
Correct |
0 ms |
348 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
348 KB |
Output is correct |
2 |
Correct |
1 ms |
348 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
6 ms |
856 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
35 ms |
3284 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
58 ms |
5584 KB |
Output is correct |
2 |
Correct |
44 ms |
4824 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
188 ms |
14344 KB |
Output is correct |
2 |
Correct |
97 ms |
8404 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
462 ms |
28468 KB |
Output is correct |
2 |
Correct |
533 ms |
30116 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
572 ms |
34860 KB |
Output is correct |
2 |
Correct |
613 ms |
34200 KB |
Output is correct |
3 |
Correct |
698 ms |
34640 KB |
Output is correct |