String Transformation

题意翻译

给定一个由小写字母组成的字符串s(1<=|s|<=100000),将其中的某些字母进行移位变换(a被替换成b,b被替换成c,...,y被替换成z,而z不能被替换成任何字母)。目的是使得子序列abcdefghijklmnopqrstuvwxyz存在于s里(该子序列可以通过删除掉变换后的s中的某些字母得到)。 输入一个字符串s 如果能够通过变换得到包含子序列abcdefghijklmnopqrstuvwxyz的字符串,那么输出变换后的s,否则输出-1

题目描述

You are given a string $ s $ consisting of $ |s| $ small english letters. In one move you can replace any character of this string to the next character in alphabetical order (a will be replaced with b, s will be replaced with t, etc.). You cannot replace letter z with any other letter. Your target is to make some number of moves (not necessary minimal) to get string abcdefghijklmnopqrstuvwxyz (english alphabet) as a subsequence. Subsequence of the string is the string that is obtained by deleting characters at some positions. You need to print the string that will be obtained from the given string and will be contain english alphabet as a subsequence or say that it is impossible.

输入输出格式

输入格式


The only one line of the input consisting of the string $ s $ consisting of $ |s| $ ( $ 1<=|s|<=10^{5} $ ) small english letters.

输出格式


If you can get a string that can be obtained from the given string and will contain english alphabet as a subsequence, print it. Otherwise print «-1» (without quotes).

输入输出样例

输入样例 #1

aacceeggiikkmmooqqssuuwwyy

输出样例 #1

abcdefghijklmnopqrstuvwxyz

输入样例 #2

thereisnoanswer

输出样例 #2

-1