zoukankan      html  css  js  c++  java
  • codeforces158D

    Ice Sculptures

     CodeForces - 158D 

    The Berland University is preparing to celebrate the 256-th anniversary of its founding! A specially appointed Vice Rector for the celebration prepares to decorate the campus. In the center of the campus n ice sculptures were erected. The sculptures are arranged in a circle at equal distances from each other, so they form a regular n-gon. They are numbered in clockwise order with numbers from 1 to n.

    The site of the University has already conducted a voting that estimated each sculpture's characteristic of ti — the degree of the sculpture's attractiveness. The values of ti can be positive, negative or zero.

    When the university rector came to evaluate the work, he said that this might be not the perfect arrangement. He suggested to melt some of the sculptures so that:

    • the remaining sculptures form a regular polygon (the number of vertices should be between 3 and n),
    • the sum of the ti values of the remaining sculptures is maximized.

    Help the Vice Rector to analyze the criticism — find the maximum value of ti sum which can be obtained in this way. It is allowed not to melt any sculptures at all. The sculptures can not be moved.

    Input

    The first input line contains an integer n (3 ≤ n ≤ 20000) — the initial number of sculptures. The second line contains a sequence of integers t1, t2, ..., tnti — the degree of the i-th sculpture's attractiveness ( - 1000 ≤ ti ≤ 1000). The numbers on the line are separated by spaces.

    Output

    Print the required maximum sum of the sculptures' attractiveness.

    Examples

    Input
    8
    1 2 -3 4 -5 5 2 3
    Output
    14
    Input
    6
    1 -2 3 -4 5 -6
    Output
    9
    Input
    6
    1 2 3 4 5 6
    Output
    21

    Note

    In the first sample it is best to leave every second sculpture, that is, leave sculptures with attractivenesses: 2, 4, 5 и 3.

    sol:想了半天都不会,然后看题解,然后惊呼这TM能过??

    for(i=1;i*3<=n;i++)
        {
            if(n%i==0)
            {
                for(j=1;j<=i;j++)
                {
                    int Sum=0;
                    for(k=j;k<=n;k+=i)
                    {
                        Sum+=a[k];
                    }
                    ans=max(ans,Sum);
                }
            }
        }

    这也太暴力了吧,我怎么算复杂度都是n2及以上啊,为什么能过啊qaq

    Ps:不管了,弃了弃了(跪求更好的做法或证明一下复杂度)

    4.3updata:这是调和级数的复杂度,似乎是n1.5。实锤不会算复杂度qaq

    #include <bits/stdc++.h>
    using namespace std;
    typedef int ll;
    inline ll read()
    {
        ll s=0;
        bool f=0;
        char ch=' ';
        while(!isdigit(ch))
        {
            f|=(ch=='-'); ch=getchar();
        }
        while(isdigit(ch))
        {
            s=(s<<3)+(s<<1)+(ch^48); ch=getchar();
        }
        return (f)?(-s):(s);
    }
    #define R(x) x=read()
    inline void write(ll x)
    {
        if(x<0)
        {
            putchar('-'); x=-x;
        }
        if(x<10)
        {
            putchar(x+'0'); return;
        }
        write(x/10);
        putchar((x%10)+'0');
        return;
    }
    #define W(x) write(x),putchar(' ')
    #define Wl(x) write(x),putchar('
    ')
    const int N=20005;
    int n,a[N];
    int main()
    {
        int i,j,k,ans=-0x3f3f3f3f;
        R(n);
        for(i=1;i<=n;i++) R(a[i]);
        for(i=1;i*3<=n;i++)
        {
            if(n%i==0)
            {
                for(j=1;j<=i;j++)
                {
                    int Sum=0;
                    for(k=j;k<=n;k+=i)
                    {
                        Sum+=a[k];
                    }
                    ans=max(ans,Sum);
                }
            }
        }
        Wl(ans);
        return 0;
    }
    /*
    input
    8
    1 2 -3 4 -5 5 2 3
    output
    14
    
    input
    6
    1 -2 3 -4 5 -6
    output
    9
    
    input
    6
    1 2 3 4 5 6
    output
    21
    
    input
    4
    1 -10 1 -10
    output
    -18
    */
    View Code
  • 相关阅读:
    JavaScript学习总结--事件冒泡与事件捕获
    JavaScript学习总结5--事件对象
    使用“微信公众号淘客管理工具”10分钟就能搭建淘客返利公众号
    C#实现通过拼多多分享微信公众号实现查询优惠券、佣金比率
    C# 实现生成带二维码的专属微信公众号推广海报
    公众号搭建淘宝、京东、拼多多查券平台
    开始使用Material UI
    Jenkins执行批处理文件失败
    取消Jquery mobile自动省略的文本
    C#调用Win32 api时的内存操作
  • 原文地址:https://www.cnblogs.com/gaojunonly1/p/10645735.html
Copyright © 2011-2022 走看看