B. BerSU Ball1200 / 暴力

Posted 幽殇默

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了B. BerSU Ball1200 / 暴力相关的知识,希望对你有一定的参考价值。


https://codeforces.com/problemset/problem/489/B

#include<bits/stdc++.h>
using namespace std;
int n,m,a[105],b[105];
map<int,int>mp;
int main(void)
{
	cin>>n;
	for(int i=0;i<n;i++) cin>>a[i];
	cin>>m;
	int cnt=0;
	for(int i=0;i<m;i++) cin>>b[i];
	sort(a,a+n),sort(b,b+m);
	for(int i=0;i<n;i++)
	{
		for(int j=0;j<m;j++)
		{
			if(!mp[j]&&abs(a[i]-b[j])<=1)
			{
				cnt++,mp[j]++;
				break;
			}
		}
	}
	cout<<cnt;
	return 0;
}

以上是关于B. BerSU Ball1200 / 暴力的主要内容,如果未能解决你的问题,请参考以下文章

Codeforces B. PIN Codes(暴力)

B. Young Explorers1200 / 贪心

B. Young Explorers1200 / 贪心

B. AccurateLee难度: 1200 / 贪心

B. AccurateLee难度: 1200 / 贪心

B. Young Explorers1200 / 贪心