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

zoj1004-Anagrams by Stack 【栈 回溯】

时间:2015-03-17 02:02:27      阅读:248      评论:0      收藏:0      [点我收藏+]

标签:

http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemId=4

 

Anagrams by Stack

Time Limit: 2 Seconds      Memory Limit: 65536 KB

How can anagrams result from sequences of stack operations? There are two sequences of stack operators which can convert TROT to TORT:

[
i i i i o o o o
i o i i o o i o
]

where i stands for Push and o stands for Pop. Your program should, given pairs of words produce sequences of stack operations which convert the first word to the second.

Input

The input will consist of several lines of input. The first line of each pair of input lines is to be considered as a source word (which does not include the end-of-line character). The second line (again, not including the end-of-line character) of each pair is a target word. The end of input is marked by end of file.

Output

For each input pair, your program should produce a sorted list of valid sequences of i and o which produce the target word from the source word. Each list should be delimited by

[
]

and the sequences should be printed in "dictionary order". Within each sequence, each i and o is followed by a single space and each sequence is terminated by a new line.

Process

A stack is a data storage and retrieval structure permitting two operations:

Push - to insert an item and

 

Pop - to retrieve the most recently pushed item

We will use the symbol i (in) for push and o (out) for pop operations for an initially empty stack of characters. Given an input word, some sequences of push and pop operations are valid in that every character of the word is both pushed and popped, and furthermore, no attempt is ever made to pop the empty stack. For example, if the word FOO is input, then the sequence:

i i o i o o is valid, but
i i o is not (it‘s too short), neither is
i i o o o i (there‘s an illegal pop of an empty stack)

Valid sequences yield rearrangements of the letters in an input word. For example, the input word FOO and the sequence i i o i o o produce the anagram OOF. So also would the sequence i i i o o o. You are to write a program to input pairs of words and output all the valid sequences of i and o which will produce the second member of each pair from the first.

Sample Input

madam
adamm
bahama
bahama
long
short
eric
rice

Sample Output

[
i i i i o o o i o o 
i i i i o o o o i o 
i i o i o i o i o o 
i i o i o i o o i o 
]
[
i o i i i o o i i o o o 
i o i i i o o o i o i o 
i o i o i o i i i o o o 
i o i o i o i o i o i o 
]
[
]
[
i i o i o i o o 
]






题意:由上一行单词通过栈改变为下一行单词,按字典序输出所有方法。
思路:栈+回溯
代码:
技术分享
 1 #include <fstream>
 2 #include <iostream>
 3 #include <algorithm>
 4 #include <cstdio>
 5 #include <cstring>
 6 #include <cmath>
 7 #include <cstdlib>
 8 
 9 using namespace std;
10 
11 #define EPS 1e-6
12 #define ll long long
13 #define INF 0x7fffffff
14 
15 const int N=100;
16 
17 char s1[N],s2[N],r1[2*N],sta[2*N];
18 int l1,l2,rl,top;
19 
20 void Dfs(int ip,int op);//ip表示入栈次数,op表示出栈次数
21 
22 int main()
23 {
24     //freopen("D:\\input.in","r",stdin);
25     while(~scanf("%s %s",s1,s2)){
26         puts("[");
27         l1=strlen(s1);
28         l2=strlen(s2);
29         rl=top=-1;
30         top=0;
31         if(l1==l2)  Dfs(0,0);
32         puts("]");
33     }
34     return 0;
35 }
36 void Dfs(int ip,int op){
37     if(ip==l1&&op==l2){
38         for(int i=0;i<=rl;i++){
39             printf("%c ",r1[i]);
40         }
41         puts("");
42     }
43     if(ip<l1){
44         sta[++top]=s1[ip];
45         r1[++rl]=i;
46         Dfs(ip+1,op);
47         top--;
48         rl--;
49     }
50     if(top>=0&&sta[top]==s2[op]){
51         top--;
52         r1[++rl]=o;
53         Dfs(ip,op+1);
54         sta[++top]=s2[op];
55         rl--;
56     }
57 }
View Code

 

zoj1004-Anagrams by Stack 【栈 回溯】

标签:

原文地址:http://www.cnblogs.com/jiu0821/p/4343418.html

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