比赛 |
20170912 |
评测结果 |
WWWWWWWWWA |
题目名称 |
平凡的题面 |
最终得分 |
10 |
用户昵称 |
Ostmbh |
运行时间 |
0.152 s |
代码语言 |
C++ |
内存使用 |
1.46 MiB |
提交时间 |
2017-09-12 20:41:35 |
显示代码纯文本
#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>
using namespace std;
const int maxn=100000+10;
struct T{
int l,r;
bool operator<(const T &a)const{
if(l!=a.l)
return r>a.r;
return l<a.l;
}
}A[maxn];
int B[maxn];
int main(){
freopen("bg.in","r",stdin);
freopen("bg.out","w",stdout);
int n,m;
scanf("%d %d",&n,&m);
for(int i=1;i<=n;i++)
scanf("%d",&B[i]);
for(int i=1;i<=m;i++)
scanf("%d %d",&A[i].l,&A[i].r);
int now=1;
int ans=0;
for(int i=1;i<=n;i++){
while(A[now].r<B[i])
now++;
if(A[now].l>B[i])
continue;
ans++;
}
printf("%d\n",ans);
return 0;
}