题目地址:
http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=107&page=show_problem&problem=82
题目大意:
输入一段字符串,求出字符串按照字典序的下一个排列。例如 abc 的下一个 为 acb。
Input: 以‘#“结束,最多有50个字符, 如果没有输出“No Successor”。
Output: 每个样例一行
解题思路:
用next_permutation() 可以很方便的求出,没有下一个排列的话函数返回0。next_permutation() 对应刘汝佳《算法入门经典》P121。
反思:
刚开是鬼使神差的用了循环求字符串的排列,如果和输入的相等则输出下一个。但是别忘了50长度的字符串的排列有多少,必然超时。
//#define Local
#include <iostream>
#include <iomanip>
#include <string>
#include <cstring>
#include <cstdio>
#include <queue>
#include <stack>
#include <algorithm>
#include <cmath>
using namespace std;
#define MAX 50+10
int main()
{
#ifdef Local
freopen("a.in", "r", stdin);
freopen("a.out", "w", stdout);
#endif
char s[MAX], p[MAX], temp[MAX];
int i = 0, j = 0;
while (cin >> s)
{
if ('#' == s[0])
break;
int len = strlen(s);
if (!next_permutation(s, s+len))
cout << "No Successor" << endl;
else
cout << s << endl;
}
}