问题标题: 酷町堂:1011求思路

0
0

0
0
被禁言 张皓轩
张皓轩
中级光能
中级光能

核心代码:

void dfs(int t){

for(int i=1;i<=n;i++){

if(used[i]==0){

a[t]=i;

used[i]=1;

dfs(t+1);

used[i]=0;

}

}

if(t==n){

for(int i=1;i<=n;i++){

for(int j=1;j<=n;j++){

cout<<a[j]<<" ";

}

cout<<"\n";

i+=n-1;

}

}

}

0
0
0
0
周琪岳
周琪岳
资深光能
资深光能

for循环即可

周琪岳在2020-09-26 18:23:50追加了内容

+暴力枚举

0
我要回答