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

oj--九度oj---1431

时间:2017-06-24 20:49:38      阅读:136      评论:0      收藏:0      [点我收藏+]

标签:bre   scanf   bsp   include   i++   off   turn   code   break   

 

 

#include<cstdio>
#include<cstring>
#define offset 500000
bool isinput[1000001];
int main(){
    int n,m;
    while(scanf("%d %d",&n,&m)!=EOF){
        memset(isinput,0,sizeof(isinput));
        int tmp;
        for(int i=0;i<n;i++){
            scanf("%d",&tmp);
            isinput[tmp+offset]=1;
        }
        for(int i=500000;i>=-500000;i--){
            if(isinput[i+offset]==1){
                m--;
                if(m!=0)
                    printf("%d ",i);
                else{
                    printf("%d\n",i);
                    break;
                }    
            }
                
        }
    }
    return 0;
}

 

oj--九度oj---1431

标签:bre   scanf   bsp   include   i++   off   turn   code   break   

原文地址:http://www.cnblogs.com/kprac/p/7074208.html

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