码迷,mamicode.com
首页 > 其他好文 > 详细

CF A. Dreamoon and Ranking Collection

时间:2020-04-06 09:56:27      阅读:76      评论:0      收藏:0      [点我收藏+]

标签:flag   mes   dream   --   output   out   include   example   ios   

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

标签:flag   mes   dream   --   output   out   include   example   ios   

原文地址:https://www.cnblogs.com/LiangYC1021/p/12640251.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!