看到題目我居然去寫了個超級麻煩的枚舉。。c++
其實咱們能夠先從最勉強的狀況考慮,就是沒一個字母與相鄰的字母只要相差2就好了。git
這啓示咱們把奇數位和偶數位的字母分開,在奇數位的字母和在偶數位的字母必定是合法的兩個字符串,而後咱們考慮一下怎樣合併。spa
假設奇數位組成的字符串爲a,偶數位組成的字符串位b,那麼最簡單的方法就是把a的尾接在b的頭或者把a的頭接在b的尾,讓兩個位數相差最多的字母接在一塊兒。code
事實上,這也是最理想的答案了,若是這樣都不行,那麼確定就是No answer。ci
#include <bits/stdc++.h> #define INF 0x3f3f3f3f #define full(a, b) memset(a, b, sizeof a) using namespace std; typedef long long ll; inline int lowbit(int x){ return x & (-x); } inline int read(){ int X = 0, w = 0; char ch = 0; while(!isdigit(ch)) { w |= ch == '-'; ch = getchar(); } while(isdigit(ch)) X = (X << 3) + (X << 1) + (ch ^ 48), ch = getchar(); return w ? -X : X; } inline int gcd(int a, int b){ return a % b ? gcd(b, a % b) : b; } inline int lcm(int a, int b){ return a / gcd(a, b) * b; } template<typename T> inline T max(T x, T y, T z){ return max(max(x, y), z); } template<typename T> inline T min(T x, T y, T z){ return min(min(x, y), z); } template<typename A, typename B, typename C> inline A fpow(A x, B p, C lyd){ A ans = 1; for(; p; p >>= 1, x = 1LL * x * x % lyd)if(p & 1)ans = 1LL * x * ans % lyd; return ans; } int main(){ int _ = read(); for(; _; _ --){ string s, o, e; cin >> s; for(int i = 0; i < s.size(); i ++){ (s[i] - 'a' + 1) % 2 ? o.push_back(s[i]) : e.push_back(s[i]); } bool flag = false; sort(o.begin(), o.end()), sort(e.begin(), e.end()); if(!o.empty() && !e.empty() && abs(e.back() - o.front()) != 1){ cout << e + o << endl; flag = true; } else if(!o.empty() && !e.empty() && abs(o.back() - e.front()) != 1){ cout << o + e << endl; flag = true; } else if(o.empty() || e.empty()){ cout << s << endl; flag = true; } if(!flag) cout << "No answer" << endl; } return 0; }