제출 #897366

#제출 시각아이디문제언어결과실행 시간메모리
897366boxExhibition (JOI19_ho_t2)C++17
100 / 100
40 ms4828 KiB
#include <bits/stdc++.h>
using namespace std;
 
int main() {
    ios::sync_with_stdio(0), cin.tie(0);
    int n, m;
    cin >> n >> m;
    vector<pair<int, int>> a(n);
    for (auto &[v, s] : a) cin >> s >> v;
    vector<int> c(m);
    for (int& x : c) cin >> x;
    sort(a.rbegin(), a.rend()), sort(c.rbegin(), c.rend());
    int ans = 0, i = 0;
    for (int x : c) {
        while (i < n && a[i].second > x) i++;
        if (i < n) ans++, i++;
    }
    cout << ans << '\n';
    return 0;
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...