思路

  • 一个字符串有两种转换方式:拆和合(只需进行一次)
  • 所以我们只需要考虑这两种情况
    1)合:前后两个字母都是一位数字,并且两者能组成一个11~26的二位数
    2)拆:一个代表不为10,20的二位数字母拆成两个一位数的字母

代码

// Problem: 数字串
// Contest: NowCoder
// URL: https://ac.nowcoder.com/acm/contest/9983/H
// Memory Limit: 524288 MB
// Time Limit: 2000 ms
// Powered by CP Editor (https://github.com/cpeditor/cpeditor)

#include <bits/stdc++.h>
using namespace std;
#define pb push_back
#define mp(aa,bb) make_pair(aa,bb)
#define _for(i,b) for(int i=(0);i<(b);i++)
#define rep(i,a,b) for(int i=(a);i<=(b);i++)
#define per(i,b,a) for(int i=(b);i>=(a);i--)
#define mst(abc,bca) memset(abc,bca,sizeof abc)
#define X first
#define Y second
#define lowbit(a) (a&(-a))
#define debug(a) cout<<#a<<":"<<a<<"\n"
typedef long long ll;
typedef pair<int,int> pii;
typedef unsigned long long ull;
typedef long double ld;
const int N=100010;
const int INF=0x3f3f3f3f;
const int mod=1e9+7;
const double eps=1e-6;
const double PI=acos(-1.0);

string ans1,ans2;

void solve(){
    string s;cin>>s;    

    bool flag1=0;
    int pre=0;
    for(auto x:s){
        int t=x-'a'+1;
        if(flag1) ans1+=x;
        else if(t>=10) {
            if(!pre) ans1+=x;
            else{
                ans1+=char(pre-1+'a');
                ans1+=x;
                pre=0;
            }
        }
        else if(t>=3&&t<=9) {
            if(!pre) ans1+=char(t-1+'a');
            else if(pre==1) ans1+=char(10+t-1+'a'),flag1=1;
            else if(pre==2){
                if(t<=6) ans1+=char(20+t-1+'a'),pre=0,flag1=1;
                else ans1+='b'+char(t-1+'a'),pre=0;
            }
        }
        else{
            if(!pre) pre=t;
            else if(pre==1) ans1+=char(10+t-1+'a'),pre=0,flag1=1;
            else if(pre==2){
                ans1+=char(20+t-1+'a'),pre=0,flag1=1;
            }
        }
    }
    if(!flag1&&pre) ans1+=char(pre-1+'a');

    bool flag2=0;

    for(auto x:s){
        int p=x-'a'+1;
        if(p<=10||p==20) ans2+=x;
        else if(flag2) ans2+=x;
        else if(!flag2) ans2=ans2+char(p/10-1+'a')+char(p%10-1+'a'),flag2=1;
    }
    // debug(ans1);debug(ans2);
    if(ans1==s&&ans2==s) cout<<"-1\n";
    else if(s!=ans1) cout<<ans1<<"\n";
    else cout<<ans2<<"\n";
}


int main(){
    ios::sync_with_stdio(0);cin.tie(0);
//    int t;cin>>t;while(t--)
    solve();
    return 0;
}