제출 #898243

#제출 시각아이디문제언어결과실행 시간메모리
898243andrei_iorgulescuExhibition (JOI19_ho_t2)C++14
100 / 100
47 ms4788 KiB
#include <bits/stdc++.h>

using namespace std;

int n,m;
pair<int,int>a[100005];
int v[100005];

bool cmp(pair<int,int> A, pair<int,int> B)
{
    if (A.first != B.first)
        return A.first > B.first;
    return A.second > B.second;
}

int main()
{
    ios_base::sync_with_stdio(false);
    cin.tie(NULL);
    cout.tie(NULL);
    cin >> n >> m;
    for (int i = 1; i <= n; i++)
        cin >> a[i].second >> a[i].first;
    for (int i = 1; i <= m; i++)
        cin >> v[i];
    sort(v + 1,v + m + 1);
    reverse(v + 1,v + m + 1);
    sort(a + 1,a + n + 1,cmp);
    int ans = 0;
    int ind = 1;
    for (int i = 1; i <= m; i++)
    {
        while (ind <= n and a[ind].second > v[i])
            ind++;
        if (ind == n + 1)
            break;
        ind++;
        ans++;
    }
    cout << ans;
    return 0;
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...