摘要: 题目描述: 代码: #include<bits/stdc++.h> using namespace std; int a[105]; int n; int main(){ cin>>n; for(int i=0;i<n;i++)a[i]=i+1; do{ for(int i=0;i<n;i++)co 阅读全文
posted @ 2022-03-14 10:15 回忆、少年 阅读(9) 评论(0) 推荐(0) 编辑
摘要: 题目描述: 代码: #include<bits/stdc++.h> using namespace std; int n; int a[105]; void dfs(int u){ if(u>n){ for(int i=1;i<=n;i++)if(a[i]==1)cout<<i<<" "; cout 阅读全文
posted @ 2022-03-14 10:06 回忆、少年 阅读(9) 评论(0) 推荐(0) 编辑