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

hdu1027

时间:2017-01-13 22:23:53      阅读:215      评论:0      收藏:0      [点我收藏+]

标签:amp   return   eof   ace   cst   can   iostream   for   using   

#include<iostream>
#include<cstdio>
#include<algorithm>
using namespace std;
const int SIZE=1002;

int main()
{
int n,m;
int i,count;
int seq[SIZE];
while(scanf("%d %d",&n,&m)!=EOF)
{
for(i=0;i<SIZE;i++)
seq[i]=i+1;
count=0;
do
{
count++;
if(count==m)
{
for(i=0;i<n;i++)
if(i==n-1)
cout<<seq[i];
else
cout<<seq[i]<<" ";
cout<<endl;
break;
}
}
while (next_permutation(seq,seq+n));
}
return 0;
}

hdu1027

标签:amp   return   eof   ace   cst   can   iostream   for   using   

原文地址:http://www.cnblogs.com/wangkun1993/p/6284071.html

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