0519 G2n#W2B-D Valued Keys

来源:互联网 发布:机票比价软件 编辑:程序博客网 时间:2024/05/26 07:29
摘要:给出两个字符串构造第三个串的方法,反过来求给出结果和其中一个求另一个。
原题目:CodeForces - 801B

Valued Keys

You found a mysterious function f. The function takes two strings s1 and s2. These strings must consist only of lowercase English letters, and must be the same length.

The output of the function f is another string of the same length. The i-th character of the output is equal to the minimum of the i-th character of s1 and the i-th character of s2.

For example, f("ab", "ba") = "aa", andf("nzwzl", "zizez") = "niwel".

You found two strings x and y of the same length and consisting of only lowercase English letters. Find any string z such that f(x, z) = y, or print -1 if no such string z exists.

Input

The first line of input contains the string x.

The second line of input contains the string y.

Both x and y consist only of lowercase English letters, x and y have same length and this length is between 1 and 100.

Output

If there is no string z such that f(x, z) = y, print -1.

Otherwise, print a string z such that f(x, z) = y. If there are multiple possible answers, print any of them. The string z should be the same length as x and y and consist only of lowercase English letters.

Example
Input
abaa
Output
ba
Input
nzwzlniwel
Output
xiyez
Input
abba
Output
-1
Note

The first case is from the statement.

Another solution for the second case is "zizez"

There is no solution for the third case. That is, there is no z such that f("ab", z) =  "ba".



题目理解:找出由z=f(x,y)得到的y=g(x,z)的表达式即可。
注意 :不存在是输出 -1
代码:
  1. #include <cstdio>
  2. #include <cstring>
  3. #include <algorithm>
  4. using namespace std;
  5. char X[102];
  6. char Z[102];
  7. char Y[102];
  8. int len;
  9. int main(){
  10. scanf("%s%s",X,Z);
  11. len=strlen(X);
  12. bool ans = true;
  13. for(int i=0;i<len;i++){
  14. if(X[i]==Z[i]) Y[i]=Z[i];
  15. else if(X[i]>Z[i]) Y[i]=Z[i];
  16. else {
  17. ans = false;
  18. break;
  19. }
  20. }
  21. if(ans) printf("%s",Y);
  22. else printf("-1");
  23. }

2017 05 19














原创粉丝点击