首页 > 代码库 > codevs 1294 全排列 next_permuntation
codevs 1294 全排列 next_permuntation
#include<bits/stdc++.h>using namespace std;#define ll long long#define pi (4*atan(1.0))#define eps 1e-14const int N=2e5+10,M=4e6+10,inf=1e9+10,mod=1e9+7;const ll INF=1e18+10;int a[N];int main(){ int n; scanf("%d",&n); for(int i=1;i<=n;i++) a[i]=i; do { for(int i=1;i<n;i++) printf("%d ",a[i]); printf("%d\n",a[n]); }while(next_permutation(a+1,a+n+1)); return 0;}
时间限制: 1 s
空间限制: 128000 KB
题目描述 Description
给出一个n, 请输出n的所有全排列
输入描述 Input Description
读入仅一个整数n (1<=n<=10)
输出描述 Output Description
一共n!行,每行n个用空格隔开的数,表示n的一个全排列。并且按全排列的字典序输出。
样例输入 Sample Input
3
样例输出 Sample Output
1 2 3
1 3 2
2 1 3
2 3 1
3 1 2
3 2 1
codevs 1294 全排列 next_permuntation
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。