# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
986457 |
2024-05-20T15:15:38 Z |
LOLOLO |
Hotel (CEOI11_hot) |
C++17 |
|
753 ms |
53940 KB |
#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;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
348 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
348 KB |
Output is correct |
2 |
Correct |
0 ms |
348 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
348 KB |
Output is correct |
2 |
Correct |
0 ms |
348 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
348 KB |
Output is correct |
2 |
Correct |
0 ms |
348 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
6 ms |
856 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
35 ms |
3292 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
58 ms |
5688 KB |
Output is correct |
2 |
Correct |
47 ms |
6460 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
186 ms |
14260 KB |
Output is correct |
2 |
Correct |
105 ms |
11556 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
481 ms |
31208 KB |
Output is correct |
2 |
Correct |
546 ms |
46076 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
515 ms |
35140 KB |
Output is correct |
2 |
Correct |
641 ms |
53940 KB |
Output is correct |
3 |
Correct |
753 ms |
50752 KB |
Output is correct |