Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
107723 | 冼俊烨 | 全排列问题 | C++ | 通过 | 100 | 163 MS | 248 KB | 673 | 2023-10-28 08:56:58 |
# include <iostream> using namespace std ; int cnt = 0 , num ; bool isn [10] = { true , true , true , true , true , true , true , true , true , true } ; int pl [10] ; void dfs ( int k ) { if ( k == num ) { for ( int i = 1 ; i < num ; i ++ ) { cout << pl [i] ; } for ( int i = 1 ; i <= num ; i ++ ) { if ( isn [i] ) { cout << i ; } } cout << endl ; cnt ++ ; } for ( int i = 1 ; i <= num ; i ++ ) { if ( isn [i] ) { isn [i] = false ; pl [k] = i ; dfs ( k + 1 ) ; pl [k] = 0 ; isn [i] = true ; } } return ; } int main ( ) { cin >> num ; dfs ( 1 ) ; cout << cnt << endl ; }