HDU 1425 sort (hash)

sort

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


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

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

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

Sample Input
 
   
5 3 3 -35 92 213 -644
 

Sample Output
 
   
213 92 3

本题由于数据的特殊性,还能用hash思想来做:

#include
#include
int hash[1000010];
int main(int argc, char *argv[])
{
    int n,m;
    int t;
    int cnt;
    //freopen("1425.in","r",stdin);
    while(scanf("%d %d",&n,&m)==2)
    {
        memset(hash,0,sizeof(hash));
        for(int i=0;i0;i--)
        {
            if(hash[i])
            {
                printf("%d",i-500000);
                m--;
                if(m)
                    printf(" ");
            }
            if(m==0) break;
        }
        printf("\n");
    }
    return 0;
}



你可能感兴趣的:(算法,C程序练习)