标签:turn src sort http png span scan str ace
思路:正常使用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; }
标签:turn src sort http png span scan str ace
原文地址:https://www.cnblogs.com/pcdl/p/12311953.html