码迷,mamicode.com
首页 > 其他好文 > 详细

next_permutation(start,end)

时间:2019-03-16 23:27:59      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:stream   namespace   end   string   nbsp   ++   using   span   iostream   

一道水题,简单的next_permutation用法,相同的还有prev_permutation 包含在头文件<algorithm>中

字符串 acab 含有两个a ,一个b ,一个c ,和acab 含的字母和每个字母的个数都相等的字符串还有:aacb,baca等,因为他们也是含有两个a ,一个b ,一个c。 所有满足这个性质的字符串按字典顺序排列后,acab 是第5个,我们就说acab的序号是5。 再如:ba的序号是2,aa 的序号是1。 编程求出给定字符串 S(长度<=100)的序号 P(保证<=30000) 注意:字符串只含小写字母。

 1 #include <iostream>
 2 #include <cstring>
 3 #include <string>
 4 #include <map>
 5 #include <set>
 6 #include <algorithm>
 7 #include <fstream>
 8 #include <cstdio>
 9 #include <cmath>
10 #include <stack>
11 #include <queue>
12 #define lson l,m,rt<<1
13 #define rson m+1,r,rt<<1|1
14 using namespace std;
15 const double Pi=3.14159265358979323846;
16 typedef long long ll;
17 const int MAXN=200+5;
18 const int dx[4]={0,0,1,-1};
19 const int dy[4]={1,-1,0,0};
20 const int INF = 0x3f3f3f3f;
21 const int NINF = 0xc0c0c0c0;
22 const ll mod=1e9+7;
23 int main()
24 {
25     string str;cin>>str;
26     string str0=str;
27     sort(str0.begin(),str0.end());
28     int cnt=1;
29     
30     while(str0!=str)
31     {
32         cnt++;
33         next_permutation(str0.begin(),str0.end());
34     }
35     cout <<cnt<<endl;
36     return 0;
37 }

 

next_permutation(start,end)

标签:stream   namespace   end   string   nbsp   ++   using   span   iostream   

原文地址:https://www.cnblogs.com/Msmw/p/10544847.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!