设为首页 加入收藏

TOP

HDU 1027 取数列问题
2015-07-20 17:30:37 来源: 作者: 【 】 浏览:2
Tags:HDU 1027 数列 问题

Ignatius and the Princess II

Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 4803 Accepted Submission(s): 2885


Problem Description Now our hero finds the door to the BEelzebub feng5166. He opens the door and finds feng5166 is about to kill our pretty Princess. But now the BEelzebub has to beat our hero first. feng5166 says, "I have three question for you, if you can work them out, I will release the Princess, or you will be my dinner, too." Ignatius says confidently, "OK, at last, I will save the Princess."

"Now I will show you the first problem." feng5166 says, "Given a sequence of number 1 to N, we define that 1,2,3...N-1,N is the smallest sequence among all the sequence which can be composed with number 1 to N(each number can be and should be use only once in this problem). So it's easy to see the second smallest sequence is 1,2,3...N,N-1. Now I will give you two numbers, N and M. You should tell me the Mth smallest sequence which is composed with number 1 to N. It's easy, isn't is? Hahahahaha......"
Can you help Ignatius to solve this problem?

Input The input contains several test cases. Each test case consists of two numbers, N and M(1<=N<=1000, 1<=M<=10000). You may assume that there is always a sequence satisfied the BEelzebub's demand. The input is terminated by the end of file.

Output For each test case, you only have to output the sequence satisfied the BEelzebub's demand. When output a sequence, you should print a space between two numbers, but do not output any spaces after the last number.

Sample Input
6 4
11 8

Sample Output
1 2 3 5 6 4
1 2 3 4 5 6 7 9 8 11 10

很经典的一条取数列问题,就是找到一个数列中第m大的数列。

如果使用暴力法就需要O(n!)时间效率,使用特别的方法直接取出数列,那么时间效率就是O(n)了。

方法就是使用m生成一个取数数列,根据取数数列直接取出d第m大的数,就可以了。

要规范一下函数的接口,形成良好的编程习惯。


网易叫我改投他们的运营,通知明天笔试,我突然间好像说,f you!你运营的能写出我这么漂亮的代码吗?你运营的需要这么好的算法嘛?你运营的需要数十万行的代码经验吗?


#include 
  
   
#include 
   
     #include 
    
      #include 
     
       #include 
      
        #include 
       
         #include 
        
          #include 
         
           #include 
          
            #include 
           
             #include 
             using namespace std; const int MAX_N = 1001; int arr[MAX_N], N, M, tbl[MAX_N], a2[MAX_N]; bool genTbl(int tbl[], int n, int m)//n 位, 第m个 { --m; if (m < 0) return false; tbl[n-1] = 0; for (int d = 2, i = n-2; i >= 0 ; d++, i--) { tbl[i] = m%d; m /= d; } return true; } void eraseElement(int arr[], int i, int *n) { (*n)--; for (; i < *n; i++) { arr[i] = arr[i+1]; } } void getSequence(int res[], int arr[], int tbl[], int n) { int i = 0; int *p = arr; while (n) { for ( ; n > 0 && tbl[i] == 0; n--, p++, i++) { res[i] = *p; } if (!n) return ; res[i] = p[tbl[i]]; eraseElement(p, tbl[i], &n); i++; } } int main() { while (~scanf("%d %d", &N, &M)) { for (int i = 0; i < N; i++) { arr[i] = i+1; } genTbl(tbl, N, M); getSequence(a2, arr, tbl, N); printf("%d", a2[0]); for (int i = 1; i < N; i++) { printf(" %d", a2[i]); } putchar('\n'); } return 0; }
           
          
         
        
       
      
     
    
   
  



】【打印繁体】【投稿】【收藏】 【推荐】【举报】【评论】 【关闭】 【返回顶部
分享到: 
上一篇ASCII与Unicode编码消息写文件浅析 下一篇hdu3182 状态压缩水题

评论

帐  号: 密码: (新用户注册)
验 证 码:
表  情:
内  容:

·每日一道面试题-多线 (2025-12-26 06:20:17)
·java项目中哪些地方 (2025-12-26 06:20:14)
·Java真的是要没落了 (2025-12-26 06:20:12)
·C++ Lambda表达式保 (2025-12-26 05:49:45)
·C++ Lambda表达式的 (2025-12-26 05:49:42)