Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
56958 | zhangweiran | 全排列 | C++ | 通过 | 0 MS | 252 KB | 454 | 2024-11-17 17:10:34 |
#include<bits/stdc++.h> using namespace std; int x,n,vis[15],cnt=0; string a,s; void dfs(int x){ if(x==n+1){ for(int i=1;i<=n;i++){ // 答案从1开始存wwww cout<<a[i]; } cnt++; cout<<endl; return; } for(int i=0;i<n;i++){ // s是字符串,从0开始 if(vis[i]==0){ a[x]=s[i]; vis[i]=1; dfs(x+1); vis[i]=0; } } } int main(){ cin>>s; n=s.size(); dfs(1); // a从1开始存 return 0; }