当前位置: 代码迷 >> 综合 >> NYOJ - 19 - 擅长排列的小明(STL - set +全排列)
  详细解决方案

NYOJ - 19 - 擅长排列的小明(STL - set +全排列)

热度:80   发布时间:2023-10-09 15:23:01.0

题目描述:

描述
小明十分聪明,而且十分擅长排列计算。比如给小明一个数字5,他能立刻给出1-5按字典序的全排列,如果你想为难他,在这5个数字中选出几个数字让他继续全排列,那么你就错了,他同样的很擅长。现在需要你写一个程序来验证擅长排列的小明到底对不对。
输入
第一行输入整数N(1<N<10)表示多少组测试数据,
每组测试数据第一行两个整数 n m (1<n<9,0<m<=n)
输出
在1-n中选取m个字符进行全排列,按字典序全部输出,每种排列占一行,每组数据间不需分界。如样例
样例输入
2
3 1
4 2
样例输出
1
2
3
12
13
14
21
23
24
31
32
34
41
42
43

题目思路:

求出1-n的全排列后,求前m位组成的数,添加到set中(自动判重+排序),最后遍历set容器,输出元素即可。

题目代码:

#include <cstdio>
#include <string>
#include <cstring>
#include <iostream>
#include <set>
#include <algorithm>
using namespace std;
int N, n, m;
int a[10];
int main(){set<int> st;cin>>N;while(N--){cin>>n>>m;for(int i = 0; i < n; i++) a[i] = i+1;st.clear();do{int temp = 0;for(int i = 0; i < m; i++){temp = temp * 10 + a[i]; // 求m位的数字		}st.insert(temp);}while(next_permutation(a, a+n)); // 全排雷 // 遍历输出 set<int>::iterator it;for(it = st.begin(); it != st.end(); it++){cout<<*it<<endl;}}return 0;
}