Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
107707 李树强 全排列问题 C++ 通过 100 164 MS 248 KB 392 2023-10-28 08:35:23

Tests(5/5):


#include<iostream> using namespace std; int a[30], n, cnt = 0; bool vis[30]; void f(int k){ if(k == n){ for(int i = 0; i < n; i++) cout << a[i]; cout << endl; cnt++; return; } for(int i = 1; i <= n; i++){ if(!vis[i]){ a[k] = i; vis[i] = true; f(k + 1); vis[i] = false; } } } int main(){ cin >> n; f(0); cout << cnt; return 0; }


测评信息: