程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> HDU1425:sort

HDU1425:sort

編輯:C++入門知識

Problem Description 給你n個整數,請按從大到小的順序輸出其中前m大的數。     Input 每組測試數據有兩行,第一行有兩個數n,m(0<n,m<1000000),第二行包含n個各不相同,且都處於區間[-500000,500000]的整數。     Output 對每組測試數據按從大到小的順序輸出前m大的數。     Sample Input 5 3 www.2cto.com 3 -35 92 213 -644     Sample Output 213 92 3   Hint Hint   請用VC/VC++提交         //這裡不能用cin和cout進行輸入輸出,會超時   [cpp]   #include <iostream>   #include <cstdio>   #include <algorithm>   using namespace std;      bool cmp(int x,int y)   {       return x>y;   }      int a[1000000];      int main()   {       int n,k;       while(~scanf("%d%d",&n,&k))       {           for(int i = 0;i<n;i++)           scanf("%d",&a[i]);           sort(a,a+n,cmp);           printf("%d",a[0]);           for(int i = 1;i<k;i++)           printf(" %d",a[i]);           printf("\n");       }          return 0;   }      

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved