CF A. Dreamoon and Ranking Collection

Posted liangyc1021

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CF A. Dreamoon and Ranking Collection相关的知识,希望对你有一定的参考价值。

A. Dreamoon and Ranking Collection

技术图片

Example:

input
5
6 2
3 1 1 5 7 10
1 100
100
11 1
1 1 1 1 1 1 1 1 1 1 1
1 1
1
4 57
80 60 40 20

output:
5
101
2
2
60

代码:

#include<iostream>
using namespace std;
int main()
{
	int time;
	cin>>time;
	for(int t=0;t<time;t++)
	{
		int n,x,flag[1005]={0},ans,tmp;
		cin>>n>>x;
		for(int i=0;i<n;i++){
			cin>>tmp;
			flag[tmp]=1;
		}
		for(int i=1;;i++)
		{
			if(flag[i]==0){
				flag[i]=1;
				x--;
			}
			if(x==0)break;
		}
		for(int i=1;i<1005;i++)if(flag[i]==0){
			ans=i-1;
			break;
		}
		cout<<ans<<endl;
	}
	return 0;
}

以上是关于CF A. Dreamoon and Ranking Collection的主要内容,如果未能解决你的问题,请参考以下文章

A. Dreamoon and Stairs1000 / 暴力

CF 815 A. Karen and Game(暴力,模拟)

CF #738(div2)A. Mocha and Math(贪心)

CF1329B Dreamoon Likes Sequences(组合数学)

CF 1379 A. Acacius and String

cf754 A. Lesha and array splitting