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

ignitius and princess 2(全排列)

时间:2018-02-19 11:55:58      阅读:137      评论:0      收藏:0      [点我收藏+]

标签:int   ati   log   scanf   col   color   nta   return   应用   

A - Ignatius and the Princess II

 

STL中的algorithm 的全排列应用

#include<stdio.h>  
#include<string.h>  
#include<algorithm>  
#define INF 0x3f3f3f3f  
#define ll long long  
#define N 100010  
using namespace std;  
int a[N];  
int main()  
{  
    int n,m;  
    while(scanf("%d%d",&n,&m)!=EOF)  
    {  
        for(int i=1;i<=n;i++)  
            a[i]=i;  
        int k=1;  
        while(next_permutation(a+1,a+n+1))//全排列函数  
        {  
            k++;  
            if(k==m)  
                break;  
        }  
        for(int i=1;i<n;i++)  
            printf("%d ",a[i]);  
        printf("%d\n",a[n]);  
    }  
    return 0;  
} 

(这为博客找的解题代码)

 

ignitius and princess 2(全排列)

标签:int   ati   log   scanf   col   color   nta   return   应用   

原文地址:https://www.cnblogs.com/kangdong/p/8453620.html

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