Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
108641 | 李树强 | 全排列问题 | C++ | 通过 | 100 | 167 MS | 244 KB | 491 | 2023-11-04 09:09:32 |
#include<iostream> #include<stdio.h> using namespace std; int a[10], n, ans = 0; bool b[10]; void f(int x){ if(x == n){ for(int i = 0; i < n; i++) cout << a[i]; cout << endl; ans++; return; } for(int i = 1; i <= n; i++){ if(!b[i]){ b[i] = true; a[x] = i; f(x + 1); b[i] = false; } } } int main(){ // freopen("permutation.in", "r", stdin); // freopen("permutation.out", "w", stdout); cin >> n; f(0); cout << ans; return 0; }