记录编号 99888 评测结果 AAAAAAAAAA
题目名称 [Vijos 1291] 苹果摘陶陶 最终得分 100
用户昵称 Gravatar752199526 是否通过 通过
代码语言 C++ 运行时间 0.017 s
提交时间 2014-05-01 20:45:20 内存使用 0.31 MiB
显示代码纯文本
//声明:恶搞得有个度啊!!!
#include<iostream>
#include<fstream>
#include<iomanip>
#include<cmath>
#include<cstdio>
#include<cstring>
#include<algorithm>
#include<functional>
#include<assert.h>
#include<time.h>
using namespace std;
int main()
{
	freopen("applea.in","r",stdin);
	freopen("applea.out","w",stdout);
	int apple[2100]={0}/*苹果能够到的最大高度*/,tao[2100]={0}/*克隆的淘淘的身高*/;
	int n/*苹果数量*/,m/*克隆的淘淘数量*/,count=0/*能够到的******数量*/;
	//Input and sort========================================================================
	cin>>n>>m;
	for(int h=0;h<n;h++)cin>>apple[h];sort(apple,apple+n,greater<int>());
	for(int h=0;h<m;h++)cin>>tao[h];sort(tao,tao+m,greater<int>());
	//Find==================================================================================
	for(int i=0;i<n;i++)
	{
		for(int h=0;h<m;h++)
		{
			if(tao[h]<=0)continue;//Taotao can't be get >.<
			else if(apple[i]>tao[h]){count++;apple[i]=-1;tao[h]=-1;break;}//The apple get Taotao
		}
	}
	cout<<m-count<<endl;
	return 0;
}