hdu 1425 快排&模板

快排

sort

Time Limit: 6000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 15172    Accepted Submission(s): 4363


Problem Description
给你n个整数,请按从大到小的顺序输出其中前m大的数。
 

Input
每组测试数据有两行,第一行有两个数n,m(0
 

Output
对每组测试数据按从大到小的顺序输出前m大的数。
 

Sample Input
 
   
5 3 3 -35 92 213 -644
 

Sample Output
 
   
213 92 3


[cpp]  view plain copy
  1. #include   
  2. #include   
  3. #include   
  4. using namespace std;  
  5. const int N=1000005;  
  6. int num[N];  
  7. int partition(int low,int high){  
  8.     int i=low,j=high,key=num[low];  
  9.     while(i
  10.       while(ikey) --j;  
  11.       int t=num[i]; num[i]=num[j];num[j]=t;  
  12.       while(i
  13.       t=num[i];num[i]=num[j];num[j]=t;  
  14.     }  
  15.     return i;  
  16. }  
  17. void quick_sort(int low,int high){  
  18.   if(low
  19.     int x=partition(low,high);  
  20.     quick_sort(low,x-1);  
  21.     quick_sort(x+1,high);  
  22.   }  
  23. }  
  24. int main(){  
  25.   //freopen("11.txt","r",stdin);  
  26.   int n,m;  
  27.   while(~scanf("%d%d",&n,&m)){  
  28.     for(int i=0;i
  29.         scanf("%d",&num[i]);  
  30.     quick_sort(0,n-1);  
  31.     for(int i=n-1;i>n-m;--i)  
  32.         printf("%d ",num[i]);  
  33.     printf("%d",num[n-m]);  
  34.     printf("\n");  
  35.   }  
  36.   return 0;  
  37. }  


你可能感兴趣的:(oj,output,input,测试,ini)