Hdu 1280 (hash)

Source: Internet
Author: User

Typical hash: use an array subscript to represent the sum of the values obtained by adding two to one, and open up an array sum that satisfies the size of the question,

In this way, the subscript can be output from large to small */


[Csharp]
# Include <stdio. h>
# Include <string. h>
Int main ()
{
Int a [3001];
Int sum [10010];
Int n, m;
Int I, j;
While (scanf ("% d", & n, & m )! = EOF)
{
Memset (a, 0, sizeof ());
Memset (sum, 0, sizeof (sum ));
For (I = 0; I <n; I ++)
{
Scanf ("% d", & a [I]);
}

Int temp;
For (I = 0; I <n; I ++)
{
For (j = I + 1; j <n; j ++)
{
Temp = a [I] + a [j];
Sum [temp] ++;
}
}

Int count = 0; // Number of pre-output m
For (I = 10001; I> = 0; I --)
{
If (sum [I])
{
For (j = 0; j <sum [I]; j ++)
{
Count ++;
Count = 1? Printf ("% d", I): printf ("% d", I );
If (count = m)
Break;
}
}
If (count = m)
Break;
}

Printf ("\ n ");
}
Return 0;
}

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.