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

jisuanke

时间:2018-03-31 23:13:40      阅读:191      评论:0      收藏:0      [点我收藏+]

标签:ret   its   namespace   class   bsp   n+1   include   space   out   

#include<bits/stdc++.h>
using namespace std;
int n,k,a[100001],t=0,ki=0;
int main()
{
 cin>>n>>k;
 for(int i=1;i<=n;i++)
  cin>>a[i];
 sort(a+1,a+n+1);
 for(int i=1;i<=n;i++){
  if(a[i]==t){
   ki++;
   continue;
  }
  if(a[i]==t+1){
   t++;
   continue;
  }
  if(a[i]>t+1){
   if(a[i]-k<=t)
    ki++;
   else{
    if(a[i]-k==t+1)
     t++;
    else
     break;
   }
  }
 }
 cout<<ki+t<<" "<<t+1;
 return 0;
}

jisuanke

标签:ret   its   namespace   class   bsp   n+1   include   space   out   

原文地址:https://www.cnblogs.com/Miroerwf/p/8684505.html

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