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

hdu2062(递推)

时间:2014-12-05 01:52:45      阅读:207      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   io   ar   color   os   sp   for   

 

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2062

 

详细分析:http://mamicode.com/info-detail-95273.html

              http://www.xuebuyuan.com/445957.html

     

bubuko.com,布布扣
#include <cstdio>
#include <cstring>
#include <cmath>
#include <iostream>
#include <algorithm>
#include <queue>
#include <cstdlib>
#include <vector>
#include <set>
#include <map>
#define LL long long
#define mod 1000000007
#define inf 1<<30
#define N 2010
using namespace std;
LL a[100],b[100];
void init()
{
    a[1]=1;
    for(int i=2;i<=20;i++)a[i]=(a[i-1]+1)*i;
}
int main()
{
    LL n,m;
    init();
    while(scanf("%I64d%I64d",&n,&m)>0)
    {
        for(int i=1;i<=n;i++)b[i]=i;
        while(m!=0)
        {
            int t=m/(a[n]/n)+(m%(a[n]/n)?1:0);
            printf("%d",b[t]);
            m-=(a[n]/n)*(t-1)+1;
            if(m)printf(" ");
            for(int i=t;i<n;i++)b[i]=b[i+1];
            n--;
        }
        puts("");
    }
}
View Code

 

hdu2062(递推)

标签:style   blog   http   io   ar   color   os   sp   for   

原文地址:http://www.cnblogs.com/lienus/p/4145386.html

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