标签:color cin perm 描述 字母 turn code 输出 格式
1 #include <iostream> 2 #include <cstdio> 3 #include <cstring> 4 #include <string> 5 #include <algorithm> 6 #include <cmath> 7 #include <queue> 8 using namespace std; 9 10 int main() 11 { 12 int n; 13 while(cin>>n){ 14 int a[10]={0,1,2,3,4,5,6,7,8,9}; 15 if(n==1) cout<<"0123456789"<<endl; 16 int t=1; 17 while(next_permutation(a,a+10)){ 18 t++; 19 if(t==n){ 20 for(int i=0;i<10;i++) cout<<a[i]; 21 cout<<endl; 22 break; 23 } 24 } 25 } 26 return 0; 27 }
标签:color cin perm 描述 字母 turn code 输出 格式
原文地址:https://www.cnblogs.com/shixinzei/p/10562271.html