이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
int32_t main() {
int n; cin >> n; string s; cin >> s;
if (n % 2 == 0) { cout << "NOT POSSIBLE"; return 0; }
int mp1[26]{}, mp2[26]{}; int l = (n - 1) / 2;
for (int i = 0; i < n; i++) {
int chr = (s[i] - 'A');
if (i < l) mp1[chr]++;
else mp2[chr]++;
}
int d1 = 0; for (int i = 0; i < 26; i++) d1 += abs(mp1[i] - mp2[i]);
fill(mp1, mp1 + 26, 0); fill(mp2, mp2 + 26, 0); l = (n + 1) / 2;
for (int i = 0; i < n; i++) {
int chr = (s[i] - 'A');
if (i < l) mp1[chr]++;
else mp2[chr]++;
}
int d2 = 0; for (int i = 0; i < 26; i++) d2 += abs(mp1[i] - mp2[i]);
if (d1 == 1 && d2 == 1) cout << "NOT UNIQUE";
else if (d1 == 1) cout << s.substr(0, (n - 1) / 2);
else if (d2 == 1) cout << s.substr((n + 1) / 2, (n - 1) / 2);
else cout << "NOT POSSIBLE";
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |