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

构造逆序数

时间:2015-08-13 11:50:08      阅读:123      评论:0      收藏:0      [点我收藏+]

标签:

Description

The world famous scientist Innokentiy almost finished the creation of perpetuum mobile. Its main part is the energy generator which allows the other mobile‘s parts work. The generator consists of two long parallel plates with n lasers on one of them and n receivers on another. The generator is considered to be working if each laser emits the beam to some receiver such that exactly one beam is emitted to each receiver.

It is obvious that some beams emitted by distinct lasers can intersect. If two beams intersect each other, one joule of energy is released per second because of the interaction of the beams. So the more beams intersect, the more energy is released. Innokentiy noticed that if the energy generator releases exactly k joules per second, the perpetuum mobile will work up to 10 times longer. The scientist can direct any laser at any receiver, but he hasn‘t thought of such a construction that will give exactly the required amount of energy yet. You should help the scientist to tune up the generator.

Input

The only line contains two integers n and k (1 ≤ n ≤ 200000, 技术分享) separated by space — the number of lasers in the energy generator and the power of the generator Innokentiy wants to reach.

Output

Output n integers separated by spaces. i-th number should be equal to the number of receiver which the i-th laser should be directed at. Both lasers and receivers are numbered from 1 to n. It is guaranteed that the solution exists. If there are several solutions, you can output any of them.

Sample Input

Input
4 5
Output
4 2 3 1

Input
5 7
Output
4 2 5 3 1

Input
6 0
Output
1 2 3 4 5 6



思路
 第i个位置的数最大可以构造i-1个逆序数,当目前这个数构造的逆序数小于你的目标逆序数就可以把这个数放进去。

 1 #include<iostream>
 2 using namespace std;
 3 #define maxn 200000+5
 4 long long xu[maxn];
 5 int main()
 6 {
 7     long long n,k;
 8     cin >> n >> k;
 9     int num = 1,ko = n - 1;
10     while (ko >= 0)
11     { 
12         if (k >= ko)   //目前构造的逆序数小于目标逆序数
13         {
14             k -= ko;
15             xu[ko] = num++; //从后面开始放数
16         }
17         ko--;
18     }
19     for (int  i = 0; i < n; i++)
20     {
21         if (xu[i])   //放了数
22             cout << xu[i] << " ";//就输出那个数
23         else
24             cout<<num++<<" ";//不然就输出原来的数
25     }
26     return 0;
27 }

 



构造逆序数

标签:

原文地址:http://www.cnblogs.com/Lynn0814/p/4726599.html

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