zoukankan      html  css  js  c++  java
  • CodeForces 81D.Polycarp's Picture Gallery 乱搞

    D. Polycarp's Picture Gallery
    time limit per test
    2 seconds
    memory limit per test
    256 megabytes
    input
    standard input
    output
    standard output

    Polycarp loves not only to take pictures, but also to show his photos to friends. On his personal website he has recently installed a widget that can display n photos with the scroll option. At each moment of time the widget displays exactly one photograph with the option showing the previous/next one. From the first photo, you can switch to the second one or to the n-th one, from the second photo you can switch to the third one or to the first one, etc. Thus, navigation is performed in a cycle.

    Polycarp's collection consists of m photo albums, the i-th album contains ai photos. Polycarp wants to choose n photos and put them on a new widget. To make watching the photos interesting to the visitors, he is going to post pictures so that no two photos from one album were neighboring (each photo will have exactly two neighbors, the first photo's neighbors are the second and the n-th one).

    Help Polycarp compile a photo gallery. Select n photos from his collection and put them in such order that no two photos from one album went one after the other.

    Input

    The first line contains two integers n and m (3 ≤ n ≤ 1000, 1 ≤ m ≤ 40), where n is the number of photos on the widget, and m is the number of albums. The second line contains m integers a1, a2, ..., am (1 ≤ ai ≤ 1000), where ai is the number of photos in the i-th album.

    Output

    Print the single number -1 if there is no solution. Otherwise, print n numbers t1, t2, ..., tn, where ti represents the number of the album of the i-th picture in the widget. The albums are numbered from 1 in the order of their appearance in the input. If there are several solutions, print any of them.

    Sample test(s)
    Input
    4 3
    1 3 5
    Output
    3 1 3 2
    Input
    10 2
    5 5
    Output
    2 1 2 1 2 1 2 1 2 1
    Input
    10 3
    1 10 3
    Output
    -1
    #include<cstdio>
    #include<queue>
    #include<algorithm>
    using namespace std;
    int a[42],p[1024],co[42];
    typedef struct
    {
        int num,con;
    }data;
    data d[41];
    priority_queue<data>q;
    bool operator<( data x, data y ){
    
        return x.con<y.con;
    }
    int main()
    {
        int n,m,t,cnt,sum=0,co,temp,right;
        scanf("%d%d",&n,&m);
        for(int i=1; i<=m; i++)
        {
            scanf("%d",&a[i]);
            if(a[i]>n/2)
                a[i]=n/2;
            sum+=a[i];
        }
        if(sum<n)
            printf("-1");
        else
        {
            for(int i=1;i<=m;i++)
            {
                d[i].num=i;
                d[i].con=a[i];
                q.push(d[i]);
            }
            right=0;
            while(right<n)
            {
                data u=q.top();
                q.pop();
                for(int i=1;i<=2*u.con-1&&(i+right<=n);i++)
                    if(i&1)
                        p[i+right]=u.num;
                    else
                    {
                        data temp=q.top();
                        q.pop();
                        p[i+right]=temp.num;
                        temp.con--;
                        q.push(temp);
                    }
                right=min(right+2*u.con-1,n);
            }
            for(int i=1;i<=n;i++)
                printf("%d ",p[i]);
    
        }
        return 0;
    }


  • 相关阅读:
    linux基础命令篇四
    linux基础命令篇三
    linux基础命令篇二
    msf测试
    msf
    [精品转载] [NoSaFe]KALI下免杀神器TheFatRat使用秘籍
    kali&BT安装好之后无法上网或者无法获得内网IP
    Kali Linux安装之后需要做的一些事
    在Ubuntu下解决E: 无法对目录 /var/lib/apt/lists/ 加锁的问题(转)
    xshell之类的软件第一次连接不上初次安装kali问题(转)
  • 原文地址:https://www.cnblogs.com/qscqesze/p/4230890.html
Copyright © 2011-2022 走看看