码迷,mamicode.com
首页 > 其他好文 > 详细

sgu279:Bipermutations(贪心构造)

时间:2015-06-25 09:05:00      阅读:100      评论:0      收藏:0      [点我收藏+]

标签:

题目大意:
      i?j意味着在序列中i的位置在j的前面。
      构造一个长度为2n的序列,由1,1,2,2...,n,n构成。
      满足如下条件:
      1.对于任意i满足i?i
      2.对于任意ij,满足i?j?i?j
      3.定义bi,j={j,j<ij,j>iai=[i?bi,j],给出序列a,构造出满足a的序列。

分析:
      很显然我们要倒着填。
      2n位开始,每次找最小的i使得ai=0填在这一位,更新后面的a,如果找不到,那就找位置最大的没有填过ii填在这一位,更新后面的a,否则无解。
      为什么要先考虑ai=0呢?设前者的结果为c1,后者的结果为c2,如果c2>c1c1肯定在之前就被c2给更新过,那么两者交换顺序不影响;如果c2<c1,先放?c2肯定会使ac1变小成负数,不符合题意,因此先考虑显然可以。

AC code:

#include <cstdio>
#include <algorithm>
#define mp make_pair
#define pii pair<int,int>
#define x first
#define y second
#define debug(...) fprintf(stderr, __VA_ARGS__)
using namespace std;

const int MAXN = 1009;

int n;
short a[MAXN];
short ans[MAXN<<1];
short vis[MAXN];

int main()
{
    #ifndef ONLINE_JUDGE
    freopen("input.txt", "r", stdin);
    freopen("output.txt", "w", stdout);
    #endif

    scanf("%d", &n);
    for(int i = 1; i <= n; ++i)
        scanf("%d", a+i);

    for(int i = (n<<1); i >= 1; --i)
    {
        int c1 = -1, c2 = -1;
        for(int j = 1; j <= n; ++j)
            if(!a[j] && !vis[j])
            {
                c1 = j;
                break;
            }
        if(c1 != -1)
        {
            ans[i] = c1;
            vis[c1] = 1;
            for(int j = 1; j <= n; ++j)
                if(!vis[j] && j < c1)
                    --a[j];
        }
        else
        {
            for(int j = n*2; j > i; --j)
                if(ans[j] > 0 && vis[ans[j]] == 1)
                {
                    c2 = ans[j];
                    break;
                }
            if(c2 == -1)
            {
                puts("NO");
                return 0;
            }
            ans[i] = -c2;
            vis[c2] = 2;
            for(int j = 1; j <= n; ++j)
                if(!vis[j] && j > c2)
                    --a[j];
        }
    }

    puts("YES");
    for(int i = 1; i <= (n<<1); ++i)
        printf("%d ", ans[i]);
    puts("");

    #ifndef ONILNE_JUDGE
    fclose(stdin);
    fclose(stdout);
    #endif
    return 0;
}

sgu279:Bipermutations(贪心构造)

标签:

原文地址:http://blog.csdn.net/qq_20118433/article/details/46627751

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!