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

hdu 1425 sort

时间:2020-02-15 15:25:38      阅读:44      评论:0      收藏:0      [点我收藏+]

标签:turn   src   sort   http   png   span   scan   str   ace   

sort

技术图片

 

 思路:正常使用sort即可,注意是从大到小排序,需要一个cmp函数保证排序,如果使用cin和cout会超时,所以,改用时间短的scanf和printf。

代码:

#include<iostream>
#include<algorithm>
using namespace std;

int NUM[1000000];

int cmp(int x, int y){

    return x > y;
}
int main(){

    int m, n;
    int i;
    while (scanf("%d %d",&m,&n)!=EOF){

        for (int i = 0; i < m; i++)
            scanf("%d", &NUM[i]);
        sort(NUM, NUM + m, cmp);
        for (int i = 0; i < n; i++){
            if (i == n - 1){
                printf("%d\n", NUM[i]);
            }
            else{
                printf("%d ", NUM[i]);
            }
        }
    }

    system("pause");
    return 0;
}

 

hdu 1425 sort

标签:turn   src   sort   http   png   span   scan   str   ace   

原文地址:https://www.cnblogs.com/pcdl/p/12311953.html

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