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

nyoj19(排列组合next_permutation(s.begin(),s.end()))

时间:2014-11-02 21:05:06      阅读:269      评论:0      收藏:0      [点我收藏+]

标签:组合数学   nyoj   

题目意思:

从n个数中选择m个数,按字典序输出其排列。

http://acm.nyist.net/JudgeOnline/problem.php?pid=19

例:

   输入:n=3,m=1; 输出:1 2 3

   输入:n=4,m=2; 输出:12 13 14 21 23 24 31 32 34 41 42 43


题目分析:

此题为全排列的前m个数,只需对n个数调用全排列函数next_permutation(),去除重复的输出前m个即可。


AC代码:

/**
 *改写的全排列,这里用字符串输入,方便判断是否重复输出
 */
#include<iostream>
#include<cstdio>
#include<algorithm>
#include<string>
using namespace std;
int n,m;
int main()
{
    int t;
    cin>>t;
    while(t--){
        cin>>n>>m;
        string s,s1;
        for(int i=1;i<=n;i++) s+=i+‘0‘;
        s1=s.substr(0,m);
        cout<<s1<<endl;
        while(next_permutation(s.begin(),s.end())){
            if(s1!=s.substr(0,m)){//用来判断重复输出,否则会输出多次
                s1=s.substr(0,m);
                cout<<s1<<endl;
            }
        }
    }
    return 0;
}
       

nyoj19(排列组合next_permutation(s.begin(),s.end()))

标签:组合数学   nyoj   

原文地址:http://blog.csdn.net/fool_ran/article/details/40713577

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