1. 程式人生 > >Codeforces Round #376 (Div. 2) F. Video Cards(字首和)

Codeforces Round #376 (Div. 2) F. Video Cards(字首和)

題目連結
F. Video Cards
time limit per test 1 second
memory limit per test 256 megabytes
input standard input
output standard output
Little Vlad is fond of popular computer game Bota-2. Recently, the developers announced the new add-on named Bota-3. Of course, Vlad immediately bought only to find out his computer is too old for the new game and needs to be updated.

There are n video cards in the shop, the power of the i-th video card is equal to integer value ai. As Vlad wants to be sure the new game will work he wants to buy not one, but several video cards and unite their powers using the cutting-edge technology. To use this technology one of the cards is chosen as the leading one and other video cards are attached to it as secondary. For this new technology to work it's required that the power of each of the secondary video cards is divisible by the power of the leading video card. In order to achieve that the power of any secondary video card can be reduced to any integer value less or equal than the current power. However, the power of the leading video card should remain unchanged, i.e. it can't be reduced.

Vlad has an infinite amount of money so he can buy any set of video cards. Help him determine which video cards he should buy such that after picking the leading video card and may be reducing some powers of others to make them work together he will get the maximum total value of video power.

Input
The first line of the input contains a single integer n (1 ≤ n ≤ 200 000) — the number of video cards in the shop.

The second line contains n integers a1, a2, ..., an (1 ≤ ai ≤ 200 000) — powers of video cards.

Output
The only line of the output should contain one integer value — the maximum possible total power of video cards working together.

Examples
input
4
3 2 15 9
output
27
input
4
8 2 2 7
output
18
Note
In the first sample, it would be optimal to buy video cards with powers 3, 15 and 9. The video card with power 3 should be chosen as the leading one and all other video cards will be compatible with it. Thus, the total power would be 3 + 15 + 9 = 27. If he buys all the video cards and pick the one with the power 2 as the leading, the powers of all other video cards should be reduced by 1, thus the total power would be 2 + 2 + 14 + 8 = 26, that is less than 27. Please note, that it's not allowed to reduce the power of the leading video card, i.e. one can't get the total power 3 + 1 + 15 + 9 = 28.

In the second sample, the optimal answer is to buy all video cards and pick the one with the power 2 as the leading. The video card with the power 7 needs it power to be reduced down to 6. The total power would be 8 + 2 + 2 + 6 = 18.


題意:
給一個n長度的序列,問從序列中找一個數作為第一個數,把不小於它的數變成它或者它的倍數(不是他的倍數時只能減小成為他的倍數),並使得這些數的和最大。

題解:

首先記錄每個數出現次數,這個陣列處理字首和,然後對所有數進行排序,從前到後列舉每個數成為第一個數,然後列舉倍數j,找到在這個數j倍-j+1倍的數目,這些數最終都變成了第一個數的j倍,然後求和取最大就可以了。

注意要去重。

#include<iostream>
#include<cstdio>
#include<algorithm>
#include<cstring>
#include<vector>
using namespace std;
typedef long long ll;
const int MAXN=200000+100;
int a[MAXN],pre[MAXN*2];
int main()
{
	memset(pre,0,sizeof(pre));
	int n;
	scanf("%d",&n);
	for(int i=1;i<=n;i++) scanf("%d",&a[i]),pre[a[i]]++;
	for(int i=1;i<=MAXN*2;i++) pre[i]=pre[i-1]+pre[i];
	sort(a+1,a+n+1);
	int m=unique(a+1,a+n+1)-a-1; 
	ll ans=0;
	for(int i=1;i<=m;i++)
	{
		ll tmp=0;
		for(int j=2;(j-1)*a[i]<=a[m];j++)
		{
			int p=(j-1)*a[i],q=j*a[i];
			tmp+=(ll)(pre[q-1]-pre[p-1])*a[i]*(j-1);
		}
		ans=max(ans,tmp);
	}
	printf("%I64d\n",ans);
	return 0;
}