比赛 NOIP2023模拟赛2 评测结果 EEEEEEEEEE
题目名称 梦境 最终得分 0
用户昵称 小金 运行时间 2.286 s
代码语言 C++ 内存使用 11.08 MiB
提交时间 2023-11-14 12:42:54
显示代码纯文本
#include<bits/stdc++.h>
using namespace std;
struct mj{
	int l,r;
}a[200010];
int n,m,b[1000010]={},ans=0;
bool cmp(mj x,mj y)
{
	if(x.r==y.r)
	{
		return x.l<y.l;
	}
	else
	{
		return x.r<y.r;
	}
}
int main()
{
	freopen("dream.in","r",stdin);
    freopen("dream.out","w",stdout);
	cin>>n>>m;
	for(int i=1;i<=n;i++)
	{
		cin>>a[i].l>>a[i].r;
	}
	for(int i=1;i<=m;i++)
	{
		int x;
		cin>>x;
		b[x]++;
	}
	sort(a+1,a+n+1,cmp);
	for(int i=1;i<=n;i++)
	{
		for(int j=a[i].l;j<=a[i].r;j++)
		{
			if(b[j]>0)
			{
				ans++;
				b[j]--;
				break;
			}
		}
	}
	cout<<ans;
	return 0;
}