Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
108599 | 樊梵 | 全排列问题 | C++ | 通过 | 100 | 14 MS | 252 KB | 429 | 2023-11-04 09:06:06 |
#include<bits/stdc++.h> using namespace std; int a; int Count,c[105]; bool used[105]; void print() { for(int k=1;k<=a;k++) cout<<c[k]; cout<<"\n"; Count++; } int dfs(int i) { if(i>a) print(); else for(int k=1;k<=a;k++) if(used[k]==0) { used[k]=1; c[i]=k; dfs(i+1); used[k]=0; } } int main() { int b; cin>>a; dfs(1); cout<<Count; }