码迷,mamicode.com
首页 > 其他好文 > 详细

cf 20190307 Codeforces Round #543 (Div. 2, based on Technocup 2019 Final Round)

时间:2019-03-07 20:51:04      阅读:181      评论:0      收藏:0      [点我收藏+]

标签:-128   \n   math   ==   解决   where   examples   distinct   提升   

B. Mike and Children
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

Mike decided to teach programming to children in an elementary school. He knows that it is not an easy task to interest children in that age to code. That is why he decided to give each child two sweets.

Mike has nn sweets with sizes a1,a2,,ana1,a2,…,an . All his sweets have different sizes. That is, there is no such pair (i,j)(i,j) (1i,jn1≤i,j≤n ) such that iji≠j and ai=ajai=aj .

Since Mike has taught for many years, he knows that if he gives two sweets with sizes aiai and ajaj to one child and akak and apap to another, where (ai+aj)(ak+ap)(ai+aj)≠(ak+ap) , then a child who has a smaller sum of sizes will be upset. That is, if there are two children who have different sums of sweets, then one of them will be upset. Apparently, Mike does not want somebody to be upset.

Mike wants to invite children giving each of them two sweets. Obviously, he can‘t give one sweet to two or more children. His goal is to invite as many children as he can.

Since Mike is busy preparing to his first lecture in the elementary school, he is asking you to find the maximum number of children he can invite giving each of them two sweets in such way that nobody will be upset.

Input

The first line contains one integer nn (2n10002≤n≤1000 ) — the number of sweets Mike has.

The second line contains nn integers a1,a2,,ana1,a2,…,an (1ai1051≤ai≤105 ) — the sizes of the sweets. It is guaranteed that all integers are distinct.

Output

Print one integer — the maximum number of children Mike can invite giving each of them two sweets in such way that nobody will be upset.

Examples
Input
Copy
8
1 8 3 11 4 9 2 7
Output
Copy
3
Input
Copy
7
3 1 7 11 9 2 12
Output
Copy
2
Note

In the first example, Mike can give 9+2=119+2=11 to one child, 8+3=118+3=11 to another one, and 7+4=117+4=11 to the third child. Therefore, Mike can invite three children. Note that it is not the only solution.

In the second example, Mike can give 3+9=123+9=12 to one child and 1+111+11 to another one. Therefore, Mike can invite two children. Note that it is not the only solution.

 

 

这个题目,其实不太难,但是我自己还是没有独立解决,水平严重有待提升,这个呢要注意n个数都互不相等的,所以这说明要是求出相等的,则肯定不会用到同一个数  (a[i]+a[j]==a[i]+a[k]不可能成立)

知道这个我就会写了,就直接二重循环即可

 

 

#include <stdio.h>
#include <string.h>
#include <algorithm>
#include <iostream>
#include <vector>
using namespace std;
typedef long long ll;
const int maxn = 1300;
const int inf=2e5+10;
int p[inf];
bool cmp(int a,int b)
{
	return a>b;
}
int main()
{
	int n,a[maxn];
	ll ans=0;
	memset(p, 0, sizeof(p));
	cin >> n;
	for (int i = 1; i <= n; i++) scanf("%d", &a[i]);
	for (int i = 1; i <= n; i++)
	{
		for (int j = i+1; j <= n; j++)
		{
			p[a[i] + a[j]]++;
			ans=max(1ll*p[a[i]+a[j]],ans);
		}
		
	}
	printf("%d\n",ans);
	return 0;
}

  

cf 20190307 Codeforces Round #543 (Div. 2, based on Technocup 2019 Final Round)

标签:-128   \n   math   ==   解决   where   examples   distinct   提升   

原文地址:https://www.cnblogs.com/EchoZQN/p/10492143.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!