比赛 20211014 评测结果 AAAAATTTTA
题目名称 平凡的题面 最终得分 60
用户昵称 00000 运行时间 4.000 s
代码语言 C++ 内存使用 3.44 MiB
提交时间 2021-10-14 21:57:37
显示代码纯文本
#include<bits/stdc++.h>
using namespace std;
int n,m,a[100005],b[100005],c[100005],l=0;
int main(){
freopen("bg.in","r",stdin);
freopen("bg.out","w",stdout);
cin>>n>>m;
for(int q=1;q<=n;q++)
{
    cin>>a[q];
}
for(int q=1;q<=m;q++)
{
    cin>>b[q]>>c[q];
}
for(int q=1;q<=m;q++)
{
    for(int w=q+1;w<=m;w++)
    {
        if(c[q]>c[w])
        {
            swap(c[q],c[w]);swap(b[q],b[w]);
        }
    }
}
sort(a+1,a+n+1);
for(int q=1;q<=m;q++)
{
    for(int w=1;w<=n;w++)
    {
        if(a[w]>=b[q]&&a[w]<=c[q])
        {
            a[w]=0;l++;break;
        }
    }
}
cout<<l;
return 0;
}