zoukankan      html  css  js  c++  java
  • 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个数,max((i=1-n)sigma(j=1-n)(a[j]-a[j]%a[i]);

    思路:枚举每个数,再枚举它的倍数,利用前缀和得到(base *k- base*(k+1))之间的个数;复杂度o(nlogn);

    #include<bits/stdc++.h>
    using namespace std;
    #define ll long long
    #define pi (4*atan(1.0))
    #define eps 1e-14
    const int N=2e5+10,M=1e6+10,inf=1e9+10,mod=1e9+7;
    const ll INF=1e18+10;
    int sum[N],a[N];
    int main()
    {
        int n,x;
        scanf("%d",&n);
        for(int i=1;i<=n;i++)
            scanf("%d",&x),a[x]++;
        for(int i=1;i<=200000;i++)sum[i]=sum[i-1]+a[i];
        ll ans=0;
        for(int i=1;i<=200000;i++)
        {
            if(a[i])
            {
                ll s=0;
                for(int j=0;j<=200000;j+=i)
                {
                    int nex=min(200000,j+i-1);
                    if(j!=0)
                    s+=(ll)(sum[nex]-sum[j-1])*j;
                }
                ans=max(ans,s);
            }
        }
        printf("%lld
    ",ans);
        return 0;
    }
  • 相关阅读:
    HDU 1004 Let the Balloon Rise【STL<map>】
    UVA 1030
    UVA 10881
    POJ 3154 Graveyard【多解,数论,贪心】
    浅谈Notepad++选中行操作+快捷键+使用技巧【超详解】
    COGS 68. [NOIP2005] 采药【01背包复习】
    [phomeflashpic]怎样调用帝国CMS图片幻灯效果
    微信认证新增公对公账户银行卡转账支付审核费用 缩减认证审核时长
    微信公众平台回复过了怎么不能再次回复?亲们要注意查看"公众平台回复用户消息时限变更通知"的公告啊
    新版微信终于支持消息撤回了 微信零钱也能转账了[微信5.3.1.16更新]
  • 原文地址:https://www.cnblogs.com/jhz033/p/5987331.html
Copyright © 2011-2022 走看看