博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Codeforces 862 A Mahmoud and Ehab and the MEX 水题
阅读量:6311 次
发布时间:2019-06-22

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

  题目链接: http://codeforces.com/contest/862/problem/A

  题目描述: 找到一个集合中没出现的最小的数, 可以做的操作是删除, 或者添加一个, 问最少做多少次

  解题思路: 水题

  代码: 

#include 
#include
#include
#include
#include
#include
using namespace std;int n, x;int main() { cin >> n >> x; int a[107]; for( int i = 0; i < n; i++ ) { cin >> a[i]; } sort(a, a+n); int i = 0; for( i = 0; i < n; i++ ) { if( a[i] >= x ) break; } int ans = 0; if( a[i] == x ) ans++; ans += x; ans -= i; cout << ans << endl; return 0;}close
View Code

  思考: 这道题挺水的哈, 快比赛了

转载于:https://www.cnblogs.com/FriskyPuppy/p/7608532.html

你可能感兴趣的文章
逻辑卷管理器(LVM)
查看>>
一个小代码,欢迎大佬的意见,求指正
查看>>
搭建LAMP架构
查看>>
神经网络注意力机制--Attention in Neural Networks
查看>>
Spring.Net+WCF实现分布式事务
查看>>
在Linux上高效开发的7个建议
查看>>
java数据结构 - 数组使用的代码
查看>>
个人简历-项目经验
查看>>
swoole异步任务task处理慢请求简单实例
查看>>
oracle数据泵导入分区表统计信息报错(四)
查看>>
spring技术内幕读书笔记之IoC容器的学习
查看>>
细说多线程(五) —— CLR线程池的I/O线程
查看>>
JavaScript instanceof和typeof的区别
查看>>
Hadoop文件系统详解-----(一)
查看>>
《面向模式的软件体系结构2-用于并发和网络化对象模式》读书笔记(8)--- 主动器...
查看>>
状态码
查看>>
我的友情链接
查看>>
用sqlplus远程连接oracle命令
查看>>
多年一直想完善的自由行政审批流程组件【2002年PHP,2008年.NET,2010年完善数据设计、代码实现】...
查看>>
自动生成四则运算题目
查看>>