首页 > 代码库 > POJ 1833 生成排列
POJ 1833 生成排列
题目链接:POJ 1833
/************************************ * author : Grant Yuan * time : 2014/10/19 16:38 * source : POJ 1833 * algorithm: STL+排列的生成 *************************************/ #include <iostream> #include <algorithm> #include <cstdio> #include <cstring> #include <cmath> using namespace std; int str[1030]; int ans[1030]; int n,k,t; int main() { scanf("%d",&t); while(t--){ memset(str,0,sizeof(str)); scanf("%d%d",&n,&k); for(int i=0;i<n;i++) { scanf("%d",&str[i]); } for(int i=1;i<=k;i++) { bool b=next_permutation(str,str+n); } for(int j=0;j<n;j++) { if(j!=n-1) printf("%d ",str[j]); else printf("%d\n",str[j]); } } return 0; }
POJ 1833 生成排列
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。