Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
108707 | 杨博煊 | 全排列问题 | C++ | 通过 | 100 | 189 MS | 244 KB | 380 | 2023-11-04 09:23:08 |
#include<bits/stdc++.h> using namespace std; int a[20]={0},n,total=0; bool b[20]={0}; void print(){ for(int i=1;i<=n;i++){ cout<<a[i]; } cout<<endl; total++; } int s(int t){ for(int i=1;i<=n;i++) { if(!b[i]){ a[t]=i; b[i]=1; if(t==n) print(); else s(t+1); a[t]=0; b[i]=0; } } } int main(){ cin>>n; s(1); cout<<total; }