Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
108649 陈星云 全排列问题 C++ 通过 100 167 MS 248 KB 496 2023-11-04 09:09:57

Tests(5/5):


#include<bits/stdc++.h> using namespace std; int tot,a[10001],n,ans; bool pd[10001]; void dfs(int k) { if(k==n) { for(int i=0;i<k;i++) cout<<a[i]; cout<<endl; ans++; return; } for(int i=1;i<=n;i++) { if(pd[i]==0) { pd[i]=1; a[k]=i; dfs(k+1); pd[i]=0; } } } int main() { // freopen("permutation.in","r",stdin); // freopen("permutation.out","w",stdout); cin>>n; dfs(0); cout<<ans<<endl; fclose(stdin);fclose(stdout); return 0; }


测评信息: