hdu 1425 快排&模板

来源:互联网 发布:ldc数据 编辑:程序博客网 时间:2024/04/30 05:03

快排

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<n,m<1000000),第二行包含n个各不相同,且都处于区间[-500000,500000]的整数。
 

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

Sample Input
5 33 -35 92 213 -644
 

Sample Output
213 92 3


[cpp] view plaincopy
  1. #include <iostream>  
  2. #include <string.h>  
  3. #include <cstdio>  
  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<j){  
  10.       while(i<j&&num[j]>key) --j;  
  11.       int t=num[i]; num[i]=num[j];num[j]=t;  
  12.       while(i<j&&num[i]<key)  ++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<high){  
  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<n;++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. }