Codeforces_731_F

Posted 冷暖知不知

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Codeforces_731_F相关的知识,希望对你有一定的参考价值。

http://codeforces.com/problemset/problem/731/F

 

其实是暴力枚举,但是有些小技巧,直接保存每个数的数量。

枚举每个起点时,然后依次加上起点大小的分段的数量的值,用前缀和效率很高,并且能巧妙跳过重复元素。

 

#include<iostream>
#include<cstring>
#include<cstdio>
#include<algorithm>
using namespace std;

int cnt[200005] = {0},n;

int main()
{
    scanf("%d",&n);
    int temp,maxx = 0;
    while(n--)
    {
        scanf("%d",&temp);
        maxx = max(maxx,temp);
        cnt[temp]++;
    }
    for(int i = 2;i <= maxx;i++)    cnt[i] += cnt[i-1];
    long long ans = 0,tempmax;
    for(int i = 1;i <= maxx;i++)
    {
        if(cnt[i] != cnt[i-1])
        {
            tempmax = 0;
            for(int j = i;j <= maxx;j += i)    tempmax += (long long)j*(cnt[min(j+i-1,maxx)]-cnt[j-1]);
            ans = max(tempmax,ans);
        }
        
    }
    printf("%I64d\n",ans);
    return 0;
}

 

以上是关于Codeforces_731_F的主要内容,如果未能解决你的问题,请参考以下文章

Codeforces_731_A

Codeforces_731_C

Codeforces Round #731 (Div. 3)

Codeforces Round #731 (Div. 3) A - F 题解汇总

CodeForces 731E Funny Game

Codeforces Round #731 (Div. 3) A. Shortest Path with Obstaclea