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

POJ 1833 生成排列

时间:2014-10-19 17:08:36      阅读:202      评论:0      收藏:0      [点我收藏+]

标签:http   io   os   ar   for   sp   2014   on   amp   

题目链接: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 生成排列

标签:http   io   os   ar   for   sp   2014   on   amp   

原文地址:http://blog.csdn.net/yuanchang_best/article/details/40263831

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