记录编号 204058 评测结果 AAAAAAAAAA
题目名称 平凡的题面 最终得分 100
用户昵称 Gravatardevil 是否通过 通过
代码语言 C++ 运行时间 0.260 s
提交时间 2015-11-03 21:10:35 内存使用 2.34 MiB
显示代码纯文本
#include <cstdlib>
#include <iostream>
#include <cstdio>
#include <cstring>
#include <cmath>
#include <map>
#include <stack>
#include <vector>
#include <map>
#include <queue>
#include <ctime>
#include <algorithm>
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
typedef long double ld;
typedef unsigned int uint;
const int inf=1061109567;
const int maxn=300010;
const int maxm=100010;
const int mod=998244353;
const double pi=3.14;

struct node
{
    int v1,v2;
    bool operator < (const node &a) const {
        if(v1==a.v1) return v2<a.v2;
        return v1<a.v1;
    }
} a[maxn];

priority_queue<int,vector<int>,greater<int> > q;

int main()
{
    freopen("bg.in","r",stdin);
    freopen("bg.out","w",stdout);
    //clock_t st=clock();
    int n,m;scanf("%d%d",&n,&m);
    for(int i=1;i<=n;i++)
    {
        scanf("%d",&a[i].v1);
        a[i].v2=inf;
    }
    for(int i=1;i<=m;i++)
    {
        scanf("%d%d",&a[i+n].v1,&a[i+n].v2);
    }
    sort(a+1,a+1+n+m);int ans=0;
    for(int i=1;i<=n+m;i++)
    {
        if(a[i].v2!=inf)
        {
            q.push(a[i].v2);
        }
        else
        {
            while(!q.empty()&&q.top()<a[i].v1) q.pop();
            if(!q.empty()) ans++,q.pop();
        }
    }
    printf("%d\n",ans);
    //clock_t ed=clock();
    //printf("\nTime used : %.5lf Ms\n",double(ed-st)/CLOCKS_PER_SEC);
    return 0;
}