博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
1144 The Missing Number
阅读量:5213 次
发布时间:2019-06-14

本文共 973 字,大约阅读时间需要 3 分钟。

Given N integers, you are supposed to find the smallest positive integer that is NOT in the given list.

Input Specification:

Each input file contains one test case. For each case, the first line gives a positive integer N (≤). Then N integers are given in the next line, separated by spaces. All the numbers are in the range of int.

Output Specification:

Print in a line the smallest positive integer that is missing from the input list.

Sample Input:

105 -25 9 6 1 3 4 2 5 17

Sample Output:

7 注意点:考虑两种极端情况; 1.所有数都小于零 2.所有数都大于1
1 #include
2 #include
3 #include
4 using namespace std; 5 int main(){ 6 int n, i; 7 cin>>n; 8 vector
v(n); 9 for(i=0; i
>v[i];10 sort(v.begin(), v.end());11 if(v[0]>1)cout<
<
=0) break;15 bool flag=true;16 for(; i
1){18 cout<
<

 

转载于:https://www.cnblogs.com/mr-stn/p/9184429.html

你可能感兴趣的文章
排序算法(二)
查看>>
4.4 多线程进阶篇<下>(NSOperation)
查看>>
如何更改Android的默认虚拟机地址(Android virtual driver路径设置)
查看>>
Python内置函数(36)——iter
查看>>
HTML标签_1
查看>>
jsp组成元素
查看>>
排序算法(转)
查看>>
windows自带的可生成各种数据库连接字符串工具打开方法
查看>>
form表单中method的get和post区别
查看>>
【做题】arc068_f-Solitaire——糊结论
查看>>
Poj 1094 拓扑排序 水题
查看>>
Oracle SQL查询,日期过滤条件要注意的一点
查看>>
JavaScript深入系列(一)--原型和原型链详解
查看>>
一点感想
查看>>
产生随机数
查看>>
Python命名规范
查看>>
滚动条
查看>>
程序员的自我修养九Windows下的动态链接
查看>>
BZOJ 4052: [Cerc2013]Magical GCD
查看>>
Codeforces Round #361 (Div. 2)
查看>>