记录编号 |
577519 |
评测结果 |
AAAAAAAAAA |
题目名称 |
平凡的题面 |
最终得分 |
100 |
用户昵称 |
ムラサメ |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.198 s |
提交时间 |
2022-11-07 22:45:48 |
内存使用 |
3.27 MiB |
显示代码纯文本
#include<bits/stdc++.h>
using namespace std;
struct node{
int l,r,t;
bool operator<(const node &w)const{
return l<w.l||(l==w.l&&t<w.t);
}
}a[200010];
int n,m,cnt=0;
priority_queue<int,vector<int>,greater<int> >q;
int main(){
freopen("bg.in","r",stdin);
freopen("bg.out","w",stdout);
ios::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
cin>>n>>m;
for(int i=1;i<=n;i++){
cin>>a[i].l;
a[i].t=1;
}
for(int i=1;i<=m;i++){
cin>>a[i+n].l>>a[i+n].r;
a[i+n].t=0;
}
sort(a+1,a+n+m+1);
int tmp;
for(int i=1;i<=n+m;i++){
if(a[i].t==0){
q.push(a[i].r);
}
else{
tmp=a[i].l;
while(q.size()!=0&&q.top()<tmp){
q.pop();
}
if(q.size()!=0){
q.pop();
cnt++;
}
}
}
cout<<cnt<<endl;
return 0;
}