1037 A decorative fence

来源:互联网 发布:买家怎么用淘宝客 编辑:程序博客网 时间:2024/05/16 14:14
A decorative fence
Time Limit: 1000MS   Memory Limit: 10000K Total Submissions: 1741   Accepted: 503

Description
Richard just finished building his new house. Now the only thing the house misses is a cute little wooden fence. He had no idea how to make a wooden fence, so he decided to order one. Somehow he got his hands on the ACME Fence Catalogue 2002, the ultimate resource on cute little wooden fences. After reading its preface he already knew, what makes a little wooden fence cute.
A wooden fence consists of N wooden planks, placed vertically in a row next to each other. A fence looks cute if and only if the following conditions are met:
�The planks have different lengths, namely 1, 2, . . . , N plank length units.
�Each plank with two neighbors is either larger than each of its neighbors or smaller than each of them. (Note that this makes the top of the fence alternately rise and fall.)
It follows, that we may uniquely describe each cute fence with N planks as a permutation a1, . . . , aN of the numbers 1, . . . ,N such that (any i; 1 < i < N) (ai − ai−1)*(ai − ai+1) > 0 and vice versa, each such permutation describes a cute fence.
It is obvious, that there are many di erent cute wooden fences made of N planks. To bring some order into their catalogue, the sales manager of ACME decided to order them in the following way: Fence A (represented by the permutation a1, . . . , aN) is in the catalogue before fence B (represented by b1, . . . , bN) if and only if there exists such i, that (any j < i) aj = bj and (ai < bi). (Also to decide, which of the two fences is earlier in the catalogue, take their corresponding permutations, find the first place on which they differ and compare the values on this place.) All the cute fences with N planks are numbered (starting from 1) in the order they appear in the catalogue. This number is called their catalogue number.

 

Input
The first line of the input file contains the number K (1 <= K <= 100) of input data sets. K lines follow, each of them describes one input data set.
Each of the following K lines contains two integers N and C (1 <= N <= 20), separated by a space. N is the number of planks in the fence, C is the catalogue number of the fence.
You may assume, that the total number of cute little wooden fences with 20 planks fits into a 64-bit signed integer variable (long long in C/C++, int64 in FreePascal). You may also assume that the input is correct, in particular that C is at least 1 and it doesn抰 exceed the number of cute fences with N planks.

Output
For each input data set output one line, describing the C-th fence with N planks in the catalogue. More precisely, if the fence is described by the permutation a1, . . . , aN, then the corresponding line of the output file should contain the numbers ai (in the correct order), separated by single spaces.

Sample Input

 

Sample Output

 

Source
CEOI 2002

 **************************************************************************************************

***************************************************************************************************

  • Source Code
    #include <stdio.h> #include <string.h>  const int N = 21; __int64 dp[2][N][N][N]; int n; __int64 idx; bool chk[N]; void pre() {    int i, j, m;    memset(dp, 0, sizeof(dp));    dp[0][1][0][0] = 1;    dp[1][1][0][0] = 1;   for(i = 2; i <= 20; ++i) {     for(j = 0; j < i; ++j) {           int k = i - j - 1;           for(m = 1; m <= j; ++m)               dp[0][i][j][k] += dp[1][i-1][j-m][k+m-1];            for(m = 1; m <= k; ++m)                dp[1][i][j][k] += dp[0][i-1][j+m-1][k-m];        }    }}void DFS(int now, int last, int style, __int64 idx) {    if(now <= 0) return;    int i, j;   for(i = 0; i < n; ++i) if(!chk[i]) {       if(style == 0 && i < last) continue;        if(style == 1 && i > last) return;        chk[i] = true;       int big = 0, small = 0;        for(j = 0; j < n; ++j) if(!chk[j]) {           if(j < i) small++;            if(j > i) big++;        }        if(style == 0 || style == -1) {            if(idx > dp[1][now][big][small]) idx -= dp[1][now][big][small];            else {                printf("%d ", i+1);               DFS(now-1, i, 1, idx);    return;            }        }        if(style == 1 || style == -1) {            if(idx > dp[0][now][big][small]) idx -= dp[0][now][big][small];            else {                printf("%d ", i+1);                DFS(now-1, i, 0, idx);    return;           }        }        chk[i] = false;   }} int main() {    int ntc;    pre();    scanf("%d ", &ntc);    while(ntc--) {        scanf("%d %I64d", &n, &idx);        memset(chk, false, sizeof(chk));        DFS(n, -1, -1, idx);        putchar('/n');    }    return 0;}
  • 1 22 3 1

    22 13 3


    After carefully examining all the cute little wooden fences, Richard decided to order some of them. For each of them he noted the number of its planks and its catalogue number. Later, as he met his friends, he wanted to show them the fences he ordered, but he lost the catalogue somewhere. The only thing he has got are his notes. Please help him find out, how will his fences look like.