洛谷 P1706 全排列问题

自用。

题目传送门:全排列问题 - 洛谷

题解:Inori_333

参考题解:解法一:无;解法二:题解 P1706 【全排列问题】 - 洛谷专栏

题目描述

按照字典序输出自然数 1 到 n 所有不重复的排列,即 n 的全排列,要求所产生的任一数字序列中不允许出现重复的数字。

输入格式

一个整数 n。

输出格式

由 1∼n 组成的所有不重复的数字序列,每行一个序列。

每个数字保留 5 个场宽。

输入输出样例

输入 #1

3

输出 #1

    1    2    3
    1    3    2
    2    1    3
    2    3    1
    3    1    2
    3    2    1

说明/提示

1≤n≤9。

解法一:(next_permutation)

/*
    P1706 全排列问题
    https://www.luogu.com.cn/problem/P1706
    2024/10/04 submit:inori_333
*/

#include<bits/stdc++.h>
using namespace std;

int main(){
    int n;
    cin >> n;
    int a[n];
    for (int i = 0; i < n;i++){
        a[i] = i + 1;
    }
    do{
        for (int i = 0; i < n;i++){
            cout << "    " << a[i];
        }
        cout << endl;
    } while (next_permutation(a, a + n));
    return 0;
}

 解法二:(DFS)

/*
    P1706 全排列问题
    https://www.luogu.com.cn/problem/P1706
    2024/10/04 submit:inori_333
*/

#include<bits/stdc++.h>
using namespace std;

int n;
int num[15];
int vis[15];

void DFS(int x){
    if(x>n){
        for (int i = 1; i <= n;i++){
            cout << "    " << num[i];
        }
        cout << endl;
        return;
    }
    for (int i = 1; i <= n;i++){
        if(!vis[i]){
            num[x] = i;
            vis[i] = 1;
            DFS(x + 1);
            vis[i] = 0;
        }
    }
}

int main(){
    cin >> n;
    DFS(1);
}
/*sample:1~4
dfs(1)  ans={1}         use={1}
dfs(2)  ans={1,2}       use={1,2}
dfs(3)  ans={1,2,3}     use={1,2,3}
dfs(4)  ans={1,2,3,4}   use={1,2,3,4}
dfs(5)  cout:1,2,3,4    return
use[4]=0    return
ans={1,2,3} use={1,2,3} use[3]=0 return
ans={1,2}   use={1,2}   i=3 -> i=4
dfs(4)  ans={1,2,4}     use={1,2,4}
dfs(3)  ans={1,2,4,3}   use={1,2,4,3}
*/

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值