-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path1755-palindrome-reorder.cpp
71 lines (54 loc) · 1.31 KB
/
1755-palindrome-reorder.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
#include <bits/stdc++.h>
using namespace std;
#define fastio ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL);
#define ll long long
#define vi vector<int>
#define vl vector<ll>
#define pii pair<int, int>
#define pll pair<ll, ll>
#define pb push_back
#define mp make_pair
#define fi first
#define se second
const int MOD = 1e9 + 7;
const int INF = 1e9;
const ll LLINF = 1e18;
void solve() {
const int MAX_C = 26;
string input;
cin >> input;
vector<int> charCount(MAX_C, 0);
for (char c : input) {
charCount[c - 'A']++;
}
int oddChar = -1;
for (int i = 0; i < MAX_C; i++) {
if (charCount[i] % 2) {
if (oddChar != -1) {
cout << "NO SOLUTION\n";
return;
} else {
oddChar = i;
charCount[i]--;
}
}
}
string firstHalf;
for (int i = 0; i < MAX_C; i++) {
firstHalf += string(charCount[i] / 2, 'A' + i);
}
string secondHalf(firstHalf.rbegin(), firstHalf.rend());
if (oddChar != -1) {
firstHalf += static_cast<char>('A' + oddChar);
}
cout << firstHalf + secondHalf << "\n";
}
int main() {
fastio
int tc = 1; // Number of test cases
// cin >> tc;
while (tc--) {
solve();
}
return 0;
}