hdu.5202.Rikka with string(贪心) Rikka with string

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others)
Total Submission(s): 581    Accepted Submission(s): 227


Problem Description
As we know, Rikka is poor at math. Yuta is worrying about this situation, so he gives Rikka some math tasks to practice. There is one of them:


One day, Yuta got a string which contains n letters but Rikka lost it in accident. Now they want to recover the string. Yuta remembers that the string only contains lowercase letters and it is not a palindrome string. Unfortunately he cannot remember some letters. Can you help him recover the string?


It is too difficult for Rikka. Can you help her?
 
Input
This problem has multi test cases (no more than ). The next line contains an n-length string which only contains lowercase letters and ‘?’ – the place which Yuta is not sure.
 
Output
For each test cases print a n-length string – the string you come up with. In the case where more than one string exists, print the lexicographically first one. In the case where no such string exists, output “QwQ”.
 
Sample Input
5 a?bb? 3 aaa
 
Sample Output
aabba QwQ
 
Source
 
 1 #include<stdio.h>
 2 #include<string.h>
 3 int cnt = 0 ;
 4 char st[1000 + 10] ;
 5 char rst [1000 + 10] ;
 6 int n , vis[1000 + 10];
 7 
 8 void rev (char s[1000 + 10])
 9 {
10     char tmp[1000 + 10] ;
11     int k = 0 , i ;
12     for (i = strlen (st) - 1 ; i >= 0 ; i-- , k ++) {
13         tmp[k] = st[i] ;
14     }
15     tmp[k] = '