本文主要是介绍Ignatius and the Princess II【HDOJ1027】,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
题目链接
#include<cstdio>
#include<algorithm>
using namespace std;
int main(){int n,m;int arr[1010];while(scanf("%d%d",&n,&m)!=EOF){for(int i=1;i<=n;i++){arr[i]=i;}int cnt=0;do{cnt++;if(cnt==m){for(int i=1;i<n;i++){printf("%d ",arr[i]);}printf("%d\n",arr[n]);break;}}while(next_permutation(arr+1,arr+n+1));}return 0;
}
这篇关于Ignatius and the Princess II【HDOJ1027】的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!