302640: CF513B2. Permutations

Memory Limit:256 MB Time Limit:2 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Permutations

题意翻译

定义长度为n元素为1~n的序列p的$f(p)$为 $$ f(p)=\sum_{i=1}^{n}\sum_{j=i}^{n}min(p_i,...,p_j) $$ 给两个整数n,m 求在长度为n的数列p中,使得f(p)尽量大的字典序第m小的排列

题目描述

You are given a permutation $ p $ of numbers $ 1,2,...,n $ . Let's define $ f(p) $ as the following sum: ![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF513B2/01b3997850b3844bd3627bf7c28ebf2176a4c489.png)Find the lexicographically $ m $ -th permutation of length $ n $ in the set of permutations having the maximum possible value of $ f(p) $ .

输入输出格式

输入格式


The single line of input contains two integers $ n $ and $ m $ ( $ 1<=m<=cnt_{n} $ ), where $ cnt_{n} $ is the number of permutations of length $ n $ with maximum possible value of $ f(p) $ . The problem consists of two subproblems. The subproblems have different constraints on the input. You will get some score for the correct submission of the subproblem. The description of the subproblems follows. - In subproblem B1 ( $ 3 $ points), the constraint $ 1<=n<=8 $ will hold. - In subproblem B2 ( $ 4 $ points), the constraint $ 1<=n<=50 $ will hold.

输出格式


Output $ n $ number forming the required permutation.

输入输出样例

输入样例 #1

2 2

输出样例 #1

2 1 

输入样例 #2

3 2

输出样例 #2

1 3 2 

说明

In the first example, both permutations of numbers {1, 2} yield maximum possible $ f(p) $ which is equal to 4. Among them, $ (2,1) $ comes second in lexicographical order.

Input

题意翻译

定义长度为n元素为1~n的序列p的$f(p)$为 $$ f(p)=\sum_{i=1}^{n}\sum_{j=i}^{n}min(p_i,...,p_j) $$ 给两个整数n,m 求在长度为n的数列p中,使得f(p)尽量大的字典序第m小的排列

加入题单

算法标签: