HDU 1027(数字排列 STL)

时间:2021-05-30 22:54:30

题意是求 n 个数在全排列中的第 m 个序列。

直接用 stl 中的 next_permutation(a, a+n) (这个函数是求一段序列的下一个序列的)

代码如下:

 #include <bits/stdc++.h>
using namespace std;
int a[];
int main()
{
int n,m;
while(~scanf("%d%d",&n,&m))
{
for(int i = ; i < n; ++i)
a[i] = i+;
while(--m) next_permutation(a,a+n);
printf("%d",a[]);
for(int i = ; i < n; ++i)
printf(" %d",a[i]);
puts("");
}
return ;
}